bobatheme/layouts/_default/summary.html
2021-10-11 18:24:14 -05:00

38 lines
1.0 KiB
HTML

<div class="post">
<h2 class="post-title">
{{ with .Parent.Params.icon }}{{ partialCached "icon.html" . . }}{{ end }}
<a href="{{ .Permalink }}">{{ .Title | markdownify }}</a>
{{ if .Draft }}{{ partialCached "icon.html" "edit" "edit" }}{{ end }}
</h2>
{{ partial "post-metadata.html" . }}
{{ with .Resources.GetMatch "feature" }}
{{ if eq .MediaType.MainType "image" }}
<div class="post-media">
<img src="{{ .Permalink }}" alt="{{ .Title }}" />
</div>
{{ else if eq .MediaType.MainType "video" }}
<div class="post-media">
<video controls>
<source src="{{ .Permalink }}" alt="{{ .Title }}">
</video>
</div>
{{ end }}
{{ end }}
<div class="post-description">
{{ if .Description }}
<p>
{{ .Description | markdownify }}
</p>
{{ else }}
{{ .Summary }}
{{ end }}
</div>
<div class="readmore">
<a href="{{ .Permalink }}">{{ i18n "read_more" }} &rarr;</a>
</div>
</div>