mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-14 20:37:55 -05:00
68ebf61613
Use new i18n concept Fixes #2417
17 lines
482 B
HTML
17 lines
482 B
HTML
{{ partial "head.html" . }}
|
|
{{ partial "header.html" . }}
|
|
|
|
{{ if .Params.listing }}
|
|
{{ range .Site.Taxonomies.groups.uudised.Pages }}
|
|
<article class="post">
|
|
<h3><a href='{{ .Permalink }}'>{{ .Title }}</a> </h3>
|
|
<div class="post-meta">{{ .Date.Format "Mon, Jan 2, 2006" }} - {{ .FuzzyWordCount }} sõna</div>
|
|
{{ .Summary }}
|
|
<a href='{{ .Permalink }}'><nobr>loe edasi →</nobr></a>
|
|
</article>
|
|
{{ end }}
|
|
{{ else }}
|
|
{{ .Content }}
|
|
{{ end }}
|
|
|
|
{{ partial "footer.html" . }}
|