Welcome to mirror list, hosted at ThFree Co, Russian Federation.

taxonomy.html « _default « layouts - github.com/geschke/hugo-tikva.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d8f998f0900d6c8c31513da96c7cce143e8c5fdc (plain)
1
2
3
4
5
6
7
8
9
10
11
12

{{ define "main" }}
<main>
  <div>
   <h1>{{ .Title }}</h1>
   <!-- ranges through each of the content files associated with a particular taxonomy term and renders the summary.html content view -->
    {{ range .Pages }}
        {{ .Render "summary"}}
    {{ end }}
  </div>
</main>
{{ end }}