22 lines
571 B
HTML
22 lines
571 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>
|
||
|
<div class="metadata">
|
||
|
<p>
|
||
|
Posted on
|
||
|
<time class="dt-published" datetime="{{ $dateMachine }}">{{ $dateHuman }}</time>
|
||
|
</p>
|
||
|
<p> :: </p>
|
||
|
{{ partial "tags.html" . }}
|
||
|
</div>
|
||
|
</header>
|
||
|
|
||
|
<section class="e-content">
|
||
|
{{ .Content }}
|
||
|
</section>
|
||
|
</article>
|
||
|
{{ end }}
|