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

taxonomy.html « _default « layouts - github.com/marketempower/axiom.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b65cc2f294dffd9417f01ecad4dec3d0e1366044 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{{ define "main" }}
{{- $taxonomy := .Data.Singular -}}
{{- $title := printf "%s%s %s" (T $taxonomy | default  (humanize $taxonomy)) ":" .Title -}}
<div class="default-taxonomy">
  <div class="ax-content ax-l-o">
    <div class="ax-l-i">
      <h1 class="section-title">{{ $title | safeHTML }}</h1>

      {{- range .Paginator.Pages }}
      <div class="mt-8">
        {{ .Render "summary" }}
      </div>
      {{- end }}
      {{- partial "paginator" . -}}
    </div>
  </div>
</div>
{{ end }}