18 lines
399 B
HTML

{{ define "main" }}
<article>
{{ $dateMachine := .Date | time.Format "2006-01-02T15:04:05-07:00" }}
<time datetime="{{ $dateMachine }}">{{ .PublishDate.Format "2 January 2006" }}</time>
<h1>{{ .Title }}</h1>
<div class="barcode">
{{ .Params.url }}
</div>
{{ .Content }}
{{ partial "terms.html" (dict "taxonomy" "tags" "page" .) }}
</article>
{{ end }}