15 lines
440 B
HTML
15 lines
440 B
HTML
{{ define "main" }}
|
|
<section class="highlighted">
|
|
<h1>{{ .Title }}</h1>
|
|
|
|
{{ $dateMachine := .Date | time.Format "2006-01-02T15:04:05-07:00" }}
|
|
{{ $dateHuman := .Date | time.Format "2006-01-02, 15:04 -07:00" }}
|
|
<p class="date"><time datetime="{{ $dateMachine }}">{{ $dateHuman }}</time></p>
|
|
</section>
|
|
|
|
<section>
|
|
{{ .Content }}
|
|
</section>
|
|
|
|
{{ partial "terms.html" (dict "taxonomy" "tags" "page" .) }}
|
|
{{ end }}
|