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.
13 lines
479 B
13 lines
479 B
<article class="float-on-hover">
|
|
<a href=" {{.Permalink }}">
|
|
{{- $image := (.Resources.GetMatch "featured").Resize "256x webp q90" }}
|
|
<img src={{ $image.RelPermalink }} alt="{{ .Params.featured.alt }}">
|
|
</a>
|
|
<h3 class="title">{{ .Title | markdownify }}</h3>
|
|
{{- with .Date }}
|
|
<p>{{ .Format "2006/01/02" }}</p>
|
|
{{- end }}
|
|
{{- with index (.GetTerms "tags") 0 }}
|
|
<a href="{{ .Permalink }}">{{ .LinkTitle }}</a>
|
|
{{- end }}
|
|
</article>
|
|
|