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.
17 lines
584 B
17 lines
584 B
<article class="index float-on-hover shadow">
|
|
<a href=" {{ .Permalink }}">
|
|
{{- with (.Resources.GetMatch "featured") }}
|
|
{{- $resized := .Resize "256x webp q90" }}
|
|
<img src={{ $resized.RelPermalink }} alt="{{ .Params.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>
|
|
|