github.com/shohhei1126/hugo@v0.42.2-0.20180623210752-3d5928889ad7/examples/multilingual/layouts/uudis/single.html (about)

     1  {{ partial "head.html" . }}
     2  {{ partial "header.html" . }}
     3  
     4  {{ if .Params.listing }}
     5  	{{ range .Site.Taxonomies.groups.uudised.Pages }}
     6  	<article class="post">
     7  		<h3><a href='{{ .Permalink }}'>{{ .Title }}</a> </h3>
     8  		<div class="post-meta">{{ .Date.Format "Mon, Jan 2, 2006" }} - {{ .FuzzyWordCount }} sõna</div>
     9  		{{ .Summary }}
    10  		<a href='{{ .Permalink }}'><nobr>loe edasi →</nobr></a>
    11  	</article>
    12  	{{ end }}
    13  {{ else }}
    14  	{{ .Content }}
    15  {{ end }}
    16  
    17  {{ partial "footer.html" . }}