15 lines
399 B
HTML
15 lines
399 B
HTML
{{ define "main" }}
|
|
<article>
|
|
{{ $dateMachine := .Lastmod | time.Format "2006-01-02T15:04:05-07:00" }}
|
|
{{ $dateHuman := .Lastmod | time.Format "2006-01-02" }}
|
|
<time datetime="{{ $dateMachine }}">{{ $dateHuman }}</time>
|
|
<br>
|
|
|
|
<h1>{{ .Title }}</h1>
|
|
|
|
<p class="lead">{{ .Description }}</p>
|
|
|
|
{{ .Content }}
|
|
</article>
|
|
{{ partial "terms.html" (dict "taxonomy" "tags" "page" .) }}
|
|
{{ end }}
|