yamt

YAMT: Yet Another Minimal Theme for Hugo
git clone https://git.ckiri.com/yamt.git
Log | Files | Refs | LICENSE

taxonomy.html (177B)


      1 {{ define "main" }}
      2 <article>
      3 <h1>{{ .Title }}</h1>
      4 {{ .Content -}}
      5 </article>
      6 <div class="tags">
      7 {{- range .Pages -}}
      8 {{- partial "tag.html" . -}}
      9 {{- end -}}
     10 </div>
     11 {{ end }}