2021-04-14 00:23:25 -05:00
|
|
|
<div class="featured postlist gridView">
|
|
|
|
{{ range . }}
|
|
|
|
<a class="featuredCardLink" href="{{ .Permalink }}">
|
|
|
|
<article class="featuredCard {{ if .Site.Params.discreteCards }}discrete{{ end }}"
|
|
|
|
style="
|
|
|
|
background-image: linear-gradient(to bottom,
|
|
|
|
rgba(0, 0, 0, 0) 0%,
|
2021-04-14 06:28:59 -05:00
|
|
|
rgba(0, 0, 0, 0.1) 45%,
|
2021-04-14 00:23:25 -05:00
|
|
|
rgba(0, 0, 0, 0.7) 100%
|
|
|
|
), url('{{ .Params.Image }}');
|
|
|
|
">
|
|
|
|
<div class="contentArea">
|
|
|
|
<h2>{{ .Title }}</h2>
|
|
|
|
<p class="date">
|
|
|
|
<span title="Date"> </span>
|
|
|
|
{{ .Date.Format "2006-01-02" }}
|
2021-04-19 04:42:35 -05:00
|
|
|
{{ if and (site.Params.tagsInArticlePreview | default true) .Params.tags }}
|
2021-04-14 00:23:25 -05:00
|
|
|
<br />
|
|
|
|
<span title="Tags"> </span>
|
2021-06-16 04:08:07 -05:00
|
|
|
{{ range sort .Params.tags }}
|
2021-04-14 00:23:25 -05:00
|
|
|
#{{ . }}
|
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</article>
|
|
|
|
</a>
|
|
|
|
{{ end }}
|
|
|
|
</div>
|