shithub: hugo

ref: f142458c4b3c35a4034358cb1293fad3e3a17568
dir: /examples/multilingual/layouts/story/list.html/

View raw version
{{ template "chrome/head.html" . }}
{{ template "chrome/header.html" . }}
{{ range .Site.Indexes.groups.news.Pages }}
<article class="post">
	<header>
		<h2><a href='{{ .Permalink }}'>{{ .Title }}</a> </h2>
		<div class="post-meta">{{ .Date.Format "Mon, Jan 2, 2006" }} - {{ .FuzzyWordCount }} Words</div>
	</header>
	{{ .Summary }}
	<footer>
		<a href='{{ .Permalink }}'><nobr>Read more →</nobr></a>
	</footer>
</article>
{{ end }}
{{ template "chrome/footer.html" . }}