27 lines
1.1 KiB
HTML
27 lines
1.1 KiB
HTML
<section class="metadata">
|
|
{{$author := index .Site.Data.details.staff (.Params.author | default "default")}}
|
|
|
|
<div><a href="{{$author.url}}"><img src="{{$author.image}}" style="max-width:64px;border-radius:64px;"></a>
|
|
<h2>{{$author.name}}</h2>
|
|
{{if .Date }}
|
|
<p style="width:100%;"><strong>Published:</strong> {{.Date | time.Format "Jan 02 2006"}}
|
|
{{end}}
|
|
{{if .Params.updated}}
|
|
<br><strong>Updated:</strong> {{.Params.updated | time.Format "Jan 02 2006"}}
|
|
{{end}}
|
|
</p>
|
|
</div>
|
|
{{if .GetTerms "tags"}}
|
|
<div id="tags">
|
|
{{ range (.GetTerms "tags")}}
|
|
<a href="{{.Permalink}}" class="tag">
|
|
|
|
<svg class="icon">
|
|
<use href="#tag"></use>
|
|
</svg><span>
|
|
{{.LinkTitle}}</span></a>
|
|
{{end}}
|
|
</div>
|
|
{{end}}
|
|
</div>
|
|
</section>
|