github.com/graemephi/kahugo@v0.62.3-0.20211121071557-d78c0423784d/examples/multilingual/layouts/news/single.html (about)

     1  {{ partial "head.html" . }}
     2  {{ partial "header.html" . }}
     3  
     4  {{ if .Params.listing }}
     5  	{{ range .Site.Taxonomies.groups.news.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 }} Words</div>
     9  		{{ .Summary }}
    10  		<a href='{{ .Permalink }}'><nobr>read more →</nobr></a>
    11  	</article>
    12  	{{ end }}
    13  {{ else }}
    14  	{{ .Content }}
    15  {{ end }}
    16  
    17  {{ partial "footer.html" . }}