shithub: hugo

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

View raw version
{{ partial "head.html" . }}
{{ partial "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 }}
{{ partial "footer.html" . }}