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

taxonomy.html « _default « layouts - github.com/humrochagf/colordrop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 40515bbeb7f4cad7d91c7cb67bfe233c832c26b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{{ define "jsonLD" }}
  <script type="application/ld+json">
    {{ partial "blog-jsonld" . | safeJS }}
  </script>
{{ end }}

{{ define "main" }}
  <h1 class="text-center">{{ replace .Title "-" " " | title }}</h1>

  {{ range .Paginator.Pages }}
    <article>
      <h2 class="title"><a href="{{ .Permalink }}">{{ .Title }}</a></h2>

      {{ partial "publish" . }}

      {{ .Description }}
    </article>

    <hr>
  {{ end }}

  {{ template "_internal/pagination.html" . }}
{{ end }}