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

category.html « taxonomy « layouts - github.com/leonardofaria/bento.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ddcef291cd95ca27fb6b0eb97ac9d63235c0bb54 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{{ define "main" }}
  <div id="reading-progress-bar" role="presentation" class="fixed z-10 top-0 left-0 h-1 bg-gray-700"></div>

  <article class="article">
    <h1><a href="{{.Permalink}}" class="no-underline">Posts in the {{ .Title }} category</a></h1>

    {{ range .Paginator.Pages }}
      <div class="border-b border-gray-400">
        <h2 class="text-3xl font-bold"><a href="{{ .RelPermalink }}">{{ .Title }}</a></h2>
        
        <p>{{ .Summary }}</p>
      </div>    
    {{ end }}
  </article>

  {{ if gt .Paginator.TotalPages 1 }}
    {{ partial "pagination.html" . }}
  {{ end }}
{{ end }}