2021-04-15 03:04:06 -05:00
|
|
|
<article class="card postlistitem {{ if .Site.Params.discreteCards }}discrete{{ end }}">
|
|
|
|
<div>
|
|
|
|
<h2>
|
|
|
|
<a href="{{ .Permalink }}">{{ .Title }}</a>
|
|
|
|
</h2>
|
|
|
|
<p class="date">
|
|
|
|
<span title="Date"> </span>
|
|
|
|
{{ .Date.Format "2006-01-02" }}
|
2021-06-16 04:08:07 -05:00
|
|
|
{{ if and (site.Params.tagsInArticlePreview | default true) .Params.tags }}
|
2021-04-15 03:04:06 -05:00
|
|
|
| <!-- Pipe character as visual separator between date and tags-->
|
|
|
|
<span title="Tags"> </span>
|
2021-06-16 04:08:07 -05:00
|
|
|
{{ range sort .Params.tags }}
|
2021-04-18 02:46:22 -05:00
|
|
|
<a href="/tags/{{ . | urlize }}">#{{ . }}</a>
|
2021-04-15 03:04:06 -05:00
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
|
|
|
</p>
|
|
|
|
{{ if .Site.Params.imageInArticlePreview }}
|
|
|
|
{{ if .Params.Image }}
|
|
|
|
<img src="{{ .Params.Image }}" />
|
|
|
|
{{ end }}
|
|
|
|
{{end}}
|
2021-06-09 13:54:12 -05:00
|
|
|
{{ if (site.Params.articleSummary | default true) }}
|
|
|
|
<div class="articlePreview">
|
|
|
|
<p>{{ .Summary }}</p>
|
|
|
|
<p><a href="{{ .Permalink }}">Continue reading </a></p>
|
|
|
|
</div>
|
|
|
|
{{ end }}
|
2021-04-15 03:04:06 -05:00
|
|
|
</div>
|
|
|
|
<hr />
|
|
|
|
</article>
|