blob: cd62507193501c77ef58bb791e9c3e310440c2a5 (
plain) (
tree)
|
|
<article>
<header>
<div class="row between-xs">
<a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a>
{{ if .Date }}
<span>
{{- .Date | time.Format (or .Site.Params.dateFormat.published "02 Jan 2006") -}}
</span>
{{ end }}
</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>
|