mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-14 20:37:55 -05:00
15 lines
490 B
HTML
15 lines
490 B
HTML
|
{{ template "chrome/head.html" . }}
|
||
|
{{ template "chrome/header.html" . }}
|
||
|
{{ range .Site.Indexes.groups.uudised.Pages }}
|
||
|
<article class="post">
|
||
|
<header>
|
||
|
<h2><a href='{{ .Permalink }}'>{{ .Title }}</a> </h2>
|
||
|
<div class="post-meta">{{ .Date.Format "Mon, Jan 2, 2006" }} - {{ .FuzzyWordCount }} sõna</div>
|
||
|
</header>
|
||
|
{{ .Summary }}
|
||
|
<footer>
|
||
|
<a href='{{ .Permalink }}'><nobr>Loe rohkem →</nobr></a>
|
||
|
</footer>
|
||
|
</article>
|
||
|
{{ end }}
|
||
|
{{ template "chrome/footer.html" . }}
|