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

list.html « _default « layouts - github.com/saadnpq/npq-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 87a34279d29957adeb93fb9f37c34d49d4e05b76 (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 "main" }}
    <div class="section">
        <dev class="section-title">{{.Section}}</dev>
        {{ range $index, $element := .Paginator.Pages }}
            <div class="list-item">
                <a class="entry-title" href="{{ .URL }}">{{ .Title }}</a>
                {{$page := .}}
                {{with .Description}}
                <p>{{.}}</p>
                {{end}}
                <div class="meta">
                {{with .Date}}
                    <i class="far fa-calendar-alt"></i> {{.Format "Jan 2 2006"}}
                {{end}}
                <br>
                {{with .Params.tags}}
                        <i class="fas fa-tags"></i> 
                        Tags: {{ delimit . ", " }}
                {{end}}
                </div>
            </div>
        {{end}}
    </div>
    {{ partial "pagination.html" $ }}
{{end}}