Welcome to mirror list, hosted at ThFree Co, Russian Federation.

list.html « story « layouts « multilingual « examples - github.com/gohugoio/hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a753577d58db9a5267db78d2fcf9a0b8d695300b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{{ 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" . }}