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: 3f8f808193bab56eae4663a9cf2b9676e0ac9b4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{{ 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" . }}

      <img class="list-image" src="{{ index .Params.images 0 | safeURL }}" alt="{{ .Title }}" title="{{ .Title }}" />

      {{ .Summary }}
    </article>

    <hr>
  {{ end }}

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