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

terms.html « _default « layouts - github.com/7ma7X/HugoTeX.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 86b9e2746c229eef559e583111afcc9bbc9ff7bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{{ 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 }}