18 lines
523 B
HTML
18 lines
523 B
HTML
<article class="card">
|
|
{{ with .Resources.GetMatch "cover.*" }}
|
|
<img src="{{ .RelPermalink }}" alt="{{ $.Title }}" width="1350" height="700">
|
|
{{ end }}
|
|
|
|
<div class="card-info">
|
|
<h3><a href="{{ .RelPermalink }}">{{ .Title }}</a></h3>
|
|
|
|
{{ if .Date }}
|
|
<p>{{ if .Draft }}Draft • {{ end }}<time datetime="{{ .Date.Format "2006-01-02" }}">{{ .Date.Format "January 2, 2006" }}</time></p>
|
|
{{ end }}
|
|
|
|
{{ with .Params.period }}
|
|
<p>{{ . }}</p>
|
|
{{ end }}
|
|
</div>
|
|
</article>
|