18 lines
No EOL
565 B
HTML
18 lines
No EOL
565 B
HTML
<div class="metadata">
|
|
<div>
|
|
{{$author := index .Site.Data.details.staff (.Params.author | default "default")}}
|
|
<img src="{{$author.image}}" style="max-width:10rem;border-radius:5rem;">
|
|
<h2>{{$author.name}}</h2>
|
|
<p>Published: {{.Date | time.Format "Jan 02 2006"}}</p>
|
|
</div>
|
|
<div>
|
|
<h2>Tags</h2>
|
|
<div id="tags">
|
|
{{ range (.GetTerms "tags")}}
|
|
<a href="{{.Permalink}}">{{.LinkTitle}}</a>
|
|
{{end}}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</div> |