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

terms.html « _default « layouts - github.com/zwbetz-gh/cupper-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bd4fc5f4771eb65d8bcccc77bcd8cfcd32614204 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{{ define "main" }}
  <main id="main">
    <h1>{{ .Title }}</h1>
    <ul class="patterns-list">
      {{ range .Data.Terms.Alphabetical }}
        <li>
          <h2>
            <a href="{{ .Page.RelPermalink }}">
              <svg class="tag-icon" aria-hidden="true" viewBox="0 0 177.16535 177.16535" focusable="false">
                <use href="#tag"></use>
              </svg>
              {{ printf "(%d) %s" .Count .Page.Title }}
            </a>
          </h2>
        </li>
      {{ end }}
    </ul>
  </main>
{{ end }}