single.html (606B)
1 {{ partial "header.html" . }} 2 3 <article> 4 <header class="article-meta"> 5 <h1 class="title">{{ .Title }}</h1> 6 {{ if (lt 0 .Date) }}{{ partial "iso_date.html" .Date }}{{ end }} 7 <p class="terms"> 8 {{ range $key, $_ := .Site.Taxonomies }} 9 {{ with ($.Param $key) }} 10 {{ partial "i18n_fallback" $key }} | 11 {{ range $term := . }} 12 <a href="{{ print "/" $key "/" $term | urlize | relLangURL}}">{{ partial "i18n_fallback" $term }}</a> | 13 {{ end }} 14 <br/> 15 {{ end }} 16 {{ end }} 17 </p> 18 </header> 19 {{ .Content }} 20 </article> 21 22 {{ partial "footer.html" . }}