summaryrefslogtreecommitdiff
path: root/themes/m10c/layouts/_default/terms.html
blob: efce1252212a4382392e60cc55784499fc1c9dbb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{{ define "main" }}
  <article>
    <h1>{{ .Title }}</h1>
    <ul class="posts-list">
      {{ range .Data.Terms.Alphabetical }}
        <li class="posts-list-item">
            <a class="posts-list-item-title" href="{{ .Page.Permalink }}">
              {{ .Page.Title }}
            </a> 
            {{ .Count }}
        </li>
      {{ end }}
    </ul>
    {{ partial "pagination.html" $ }}
  </article>
{{ end }}