bobatheme/layouts/_default/summary.html

30 lines
799 B
HTML
Raw Normal View History

2021-10-09 15:16:24 -05:00
<div class="post">
<h2 class="post-title">
{{ with .Parent.Params.icon }}{{ partial "icon.html" . }}{{ end }}
2021-10-09 15:16:24 -05:00
<a href="{{ .Permalink }}">{{ .Title | markdownify }}</a>
{{ if .Draft }}{{ partial "icon.html" "write" }}{{ end }}
2021-10-09 15:16:24 -05:00
</h2>
{{ partial "post-metadata-short.html" . }}
2021-10-09 15:16:24 -05:00
{{ with .Resources.GetMatch "feature" }}
<div class="post-media">
{{ partial "figure.html" (dict "src" . "border" true) }}
</div>
2021-10-09 15:16:24 -05:00
{{ end }}
<div class="post-description">
{{ if .Description }}
2021-10-09 16:02:26 -05:00
<p>
{{ .Description | markdownify }}
</p>
2021-10-09 15:16:24 -05:00
{{ else }}
2021-10-09 15:23:33 -05:00
{{ .Summary }}
2021-10-09 15:16:24 -05:00
{{ end }}
</div>
<div class="readmore">
<a href="{{ .Permalink }}">{{ i18n "read_more" }} &rarr;</a>
2021-10-09 15:16:24 -05:00
</div>
</div>