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
584 B
19 lines
584 B
<section>
|
|
{{ with .Params.authors }}
|
|
{{ $author := (index . 0) }}
|
|
<h4>Author: <a href={{ printf "/%s/%s" "authors" (urlize $author) }}>{{ $author }}</a></h4>
|
|
{{ end }}
|
|
|
|
{{ with .Date }}
|
|
<h4>Posted: {{ .Format "Mon | Jan 2, 2006" }}</h4>
|
|
{{ end }}
|
|
|
|
{{ range (.GetTerms "tags") }}
|
|
<span>
|
|
<a href="{{ .Permalink }}">{{ .LinkTitle }}</a>
|
|
</span>
|
|
{{ end }}
|
|
|
|
{{ $image := (.Resources.GetMatch "featured") }}
|
|
{{ partial "image.html" (dict "image" $image "alt" .Params.featured.alt "class" "shadow featured") }}
|
|
</section>
|
|
|