aboutsummaryrefslogtreecommitdiff
path: root/themes/neonxp/layouts/partials/list.html
blob: 3b1bacc432ec4391778ddfe084823c0256863970 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<article>
    <header class="space-between">
        <a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a>
        {{ if .Date }}
        <span>
            {{- .Date | time.Format (or .Site.Params.dateFormat.published "Jan 02, 2006") -}}
        </span>
        {{ end }}
    </header>
        {{ if .Description }}
            {{ .Description }}
        {{ else }}
            {{ .Summary }}
            {{ if .Truncated }}
                <a href="{{ .RelPermalink }}">Далее...</a>
            {{ end }}
        {{ end }}
    <footer>
        {{ partial "terms.html" (dict "taxonomy" "tags" "page" .) }}
    </footer>
</article>