aboutsummaryrefslogtreecommitdiff
path: root/layouts/partials/list.html
blob: e9e58269f2b0645a6d201766fd2a1d811a84c4fa (plain) (blame)
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
30
31
32
33
34
35
36
<div class="post">
    <h1 class="post-title fw-semibold"><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h1>
    {{ if .Date }}
    <div class="d-flex align-items-center mb-4 text-muted">
        <span class="d-flex align-items-center" title="{{- .Date | time.Format (or .Site.Params.dateFormat.published "02 Jan 2006") -}}">
            {{ partial "icon.html" "calendar" }}
            {{- .Date | time.Format (or .Site.Params.dateFormat.published "02 Jan 2006") -}}
        </span>
    </div>
    {{ end }}
    {{ if .Params.Image }}
        <img class="d-block img-fluid mb-2 rounded border shadow" max-width="800" loading="lazy" src="{{ .RelPermalink }}{{.Params.Image}}" />
    {{ end }}
    {{ if .Description }}
        {{ .Description }}
    {{ else }}
        {{ .Summary }}
        {{ if .Truncated }}
            <div class="truncated">
                <a class="btn btn-primary" href="{{ .RelPermalink }}">Далее...</a>
            </div>
        {{ end }}
    {{ end }}
    {{ if .Params.Tags }}
    <div class="p-tags">
        {{ partial "icon.html" "tag" }}
        {{ partial "terms.html" (dict "taxonomy" "tags" "page" .) }}
    </div>
    {{ end }}
    {{ if .Params.Location }}
    <div class="p-location">
        {{ partial "icon.html" "location" }}
        <a href="https://www.openstreetmap.org/search?query={{.Params.Location}}">{{.Params.Location}}</a>
    </div>
    {{ end }}
</div>