You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
631 B
19 lines
631 B
{{- $alt := .Params.featured.alt }}
|
|
{{- $img := .Resources.GetMatch "featured" }}
|
|
<article class="index float-on-hover shadow">
|
|
<a href=" {{ .Permalink }}">
|
|
{{- with $img }}
|
|
{{- $resized := .Resize "256x webp q90" }}
|
|
<img src={{ $resized.RelPermalink }} alt="{{ $alt }}">
|
|
{{- end }}
|
|
<h3 class="title">{{ .Title | markdownify }}</h3>
|
|
</a>
|
|
{{- if not (.Params.hideDate) }}
|
|
{{- with .Date }}
|
|
<p>{{ .Format "2006/01/02" }}</p>
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- with index (.GetTerms "tags") 0 }}
|
|
<a href="{{ .Permalink }}">#{{ .LinkTitle }}</a>
|
|
{{- end }}
|
|
</article>
|
|
|