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

posts.html « _default « layouts - github.com/Fastbyte01/KeepIt.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3496be64852a5c11c21e8c8ba2bd966352448576 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{{ define "content" }}
{{ $data := .Data }}
<div class="post-warp archive">
    <h2 class="post-title" style="text-align:right;padding-bottom:2em">&nbsp;{{ $data.Plural | humanize }}{{ .Title }}&nbsp;</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 "2 January 2006" }}
        </span>
    </article>
    {{ end }} {{ end }}
    {{ partial "paginator.html" . }}
</div>
{{end }}