19 lines
530 B
HTML
19 lines
530 B
HTML
|
{{ define "main" }}
|
||
|
{{ $dateMachine := .Date | time.Format "2006-01-02T15:04:05-07:00" }}
|
||
|
{{ $dateHuman := .Date | time.Format "2006-01-02" }}
|
||
|
<article class="h-entry">
|
||
|
<header>
|
||
|
<h1 class="p-name">{{ .Title }}</h1>
|
||
|
<p>
|
||
|
Posted on
|
||
|
<time class="dt-published" datetime="{{ $dateMachine }}">{{ $dateHuman }}</time>
|
||
|
</p>
|
||
|
</header>
|
||
|
|
||
|
<section class="e-content">
|
||
|
{{ .Content }}
|
||
|
</section>
|
||
|
{{ partial "terms.html" (dict "taxonomy" "tags" "page" .) }}
|
||
|
</article>
|
||
|
{{ end }}
|