aboutsummaryrefslogtreecommitdiff
path: root/layouts/go/partials/list.html
blob: bfdf13b3340d547f00979413d7a0671c3944d796 (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
<article>
    <header>
        <div class="row between-xs">
            <a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a>
            <a href="https://godoc.neonxp.ru/neonxp.ru/go/{{ .Params.Name }}">
                <img src="https://godoc.neonxp.ru/neonxp.ru/go/{{ .Params.Name }}?status.svg" />
            </a>
        </div>
    </header>
        {{ if .Params.Image }}
            <img src="{{ .RelPermalink }}{{.Params.Image}}" />
        {{ end }}
        {{ if .Description }}
            {{ .Description }}
        {{ else }}
            {{ .Summary }}
            {{ if .Truncated }}
                <a href="{{ .RelPermalink }}">Далее...</a>
            {{ end }}
        {{ end }}
    <footer>
        {{ partial "terms.html" (dict "taxonomy" "tags" "page" .) }}
    </footer>
</article>