blob: 8eaadeeb1cf7dc86ce0817272a6287a4590ad17f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<article class="mw7 center pv4 ph3">
<a class="db no-underline grow" href= "{{ .RelPermalink }}">
<h3 class="f3 baskerville mt0 lh-title near-white">{{.Title }}</h3>
<div class="cf">
{{ if isset .Params "image" }}
{{ $image := resources.Get .Params.image }}
{{ $image := $image.Resize (default "320x" .Params.thumbnail_size) }}
<div class="fl-ns mb4 mb0-ns pr3-ns">
<img src="{{ $image.RelPermalink }}" class="db center">
</div>
{{ end }}
<div class="f5 lh-copy near-white">
{{ .Summary }}
</div>
</div>
</a>
{{ if isset .Params "metadata" }}
{{ partial "metadata.html" . }}
{{ end }}
</article>
|