blob: 3c5811e4a21825dd2e2f9de8bc279dbb2d2c9fa1 (
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
|
<article>
<header>
<div class="row between-sm">
<a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a>
{{ if .Date }}
<span>
{{- .Date | time.Format (or .Site.Params.dateFormat.published "02 Jan 2006") -}}
</span>
{{ end }}
</div>
</header>
{{ if .Description }}
{{ .Description }}
{{ else }}
{{ .Summary }}
{{ if .Truncated }}
<a href="{{ .RelPermalink }}">Далее...</a>
{{ end }}
{{ end }}
<footer>
{{ partial "terms.html" (dict "taxonomy" "tags" "page" .) }}
</footer>
</article>
|