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

terms.html « _default « layouts - github.com/hauke96/hugo-theme-hamburg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 801323a8c0f39e8a19441f15e18f4e05f4829842 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{{ partial "header.html" . }}
<section class="taxonomy-terms">
  <h1>{{ .Title }}</h1>
  {{ $data := .Data }}
  <div class="list-group">
	{{ range $key, $value := .Pages }}
      <a class="list-group-item" href="{{ $value.URL }}">
        {{ $value.Name }}
      </a>
    {{ end }}
  </div>
</section>
{{ partial "footer.html" . }}