2024-11-16 19:32:18 +03:00
|
|
|
<article>
|
2024-11-20 03:20:47 +03:00
|
|
|
<header>
|
2024-11-29 18:06:57 +03:00
|
|
|
<div class="row between-xs">
|
2024-11-20 03:20:47 +03:00
|
|
|
<a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a>
|
|
|
|
{{ if .Date }}
|
|
|
|
<span>
|
|
|
|
{{- .Date | time.Format (or .Site.Params.dateFormat.published "02 Jan 2006") -}}
|
|
|
|
</span>
|
|
|
|
{{ end }}
|
|
|
|
</div>
|
2024-11-16 19:32:18 +03:00
|
|
|
</header>
|
2024-11-28 00:46:17 +03:00
|
|
|
{{ if .Params.Image }}
|
|
|
|
<img src="{{ .RelPermalink }}{{.Params.Image}}" />
|
|
|
|
{{ end }}
|
2024-11-16 19:32:18 +03:00
|
|
|
{{ if .Description }}
|
|
|
|
{{ .Description }}
|
|
|
|
{{ else }}
|
|
|
|
{{ .Summary }}
|
|
|
|
{{ if .Truncated }}
|
|
|
|
<a href="{{ .RelPermalink }}">Далее...</a>
|
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
|
|
|
<footer>
|
|
|
|
{{ partial "terms.html" (dict "taxonomy" "tags" "page" .) }}
|
|
|
|
</footer>
|
|
|
|
</article>
|