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

terms.html « _default « layouts - github.com/matsuyoshi30/harbor.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5d2d7b4bd16ffd38b9b64ed13d1debc455997f70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{{ define "main" }}
  <div class="container" role="main">
    <article class="post-preview">
      {{ range .Data.Terms.Alphabetical }}
        <div class="terms">
          <h4 class="term-name">
            <a href="{{ .Page.Permalink }}">{{ .Page.Title }}</a>
            <span class="badge">{{ .Count }}</span>
          </h4>
        </div>
      {{ end }}
    </article>
  </div>
{{ end }}