23 lines
645 B
HTML
23 lines
645 B
HTML
<div class="item">
|
|
<div style="justify-content: space-between" class="flex-wrap-container">
|
|
<div class="summary">
|
|
<a class="summary__link" href="{{ .Permalink }}">
|
|
<h4>{{ .Title }}</h4>
|
|
</a>
|
|
<p>{{.Summary}}</p>
|
|
<span class="summary__date">
|
|
{{.Params.date.Format "2 January 2006"}}
|
|
</span>
|
|
</div>
|
|
<div>
|
|
{{ if .Params.thumbnail }}
|
|
{{- $image := resources.Get .Params.thumbnail -}}
|
|
<a style="display: block" href="{{ .Permalink }}">
|
|
<img src="{{ ($image.Fill "200x200 q100 Center").RelPermalink }}">
|
|
</a>
|
|
{{ end }}
|
|
</div>
|
|
</div>
|
|
<hr>
|
|
</div>
|
|
|