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

list.html « _default « layouts - github.com/darshanbaral/aafu.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 79a98f12b1450ce1261a89fd73340c6f25217c24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{{ define "main" }}
<h1 class="standard top-h1 mt-4 mb-4">
  {{- .Title -}}
</h1>
<div class="standard grid-container">
  {{ range (.Paginator 2).Pages }}
  <div class="index-box p-3 shadow rounded mb-4">
    <p class="mb-0">{{ .Date.Format "January 2, 2006" }}</p>
    <h3>
      <a href="{{ .Permalink | relURL }}">
        {{- .Title -}}
      </a>
    </h3>

    <p>Reading Time: {{ .ReadingTime }} minutes</p>
  </div>
  {{ end }}
</div>
<div class="mt-4 d-flex justify-content-center">
  {{ template "_internal/pagination.html" . }}
</div>
{{ end }}