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

list.html « taxonomy « layouts - github.com/uPagge/uBlogger.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2fc7823e8248f851efd7d3720c3e20f91fdc88c5 (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
26
27
28
29
{{ define "title" }}{{ .Title }} | {{ T .Data.Singular | default (humanize .Data.Singular) }} | {{ .Site.Title }}{{ end }}

{{ define "content" }}
    <div class="post-warp archive">
        <h2 class="post-title animated pulse faster">
            {{ $taxonomy := .Data.Singular }}
            {{ if eq $taxonomy "category" }}
                <i class="far fa-folder-open"></i>&nbsp;{{ .Title }}
            {{ else if eq $taxonomy "tag" }}
                <i class="fas fa-tag"></i>&nbsp;{{ .Title }}
            {{ else }}
                {{ printf "%s - %s" (T $taxonomy | default  (humanize $taxonomy)) .Title }}
            {{ end }}
        </h2>

        {{ range (.Paginate (.Pages.GroupByDate "2006")).PageGroups }}
            <h3>{{ .Key }}</h3>
            {{ range .Pages }}
                <article class="archive-item">
                    <a href="{{ .RelPermalink }}" class="archive-item-link">{{ .Title }}</a>
                    <span class="archive-item-date">
                        {{ .Date.Format (.Site.Params.dateFormatToUse | default "01-02") }}
                    </span>
                </article>
            {{ end }}
        {{ end }}
        {{ partial "paginator.html" . }}
    </div>
{{end }}