26 lines
No EOL
798 B
HTML
26 lines
No EOL
798 B
HTML
<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> |