2024-06-25 20:39:48 -04:00
|
|
|
{{ define "main" }}
|
|
|
|
<article>
|
|
|
|
<h1>{{ .Title }}</h1>
|
|
|
|
{{ $dateHuman := .Date.Format "January 2, 2006" }}
|
|
|
|
{{ $dateMachine := .Date.Format "2006-01-02T15:04:05-07:00" }}
|
|
|
|
{{ $lastUpdated := .Lastmod.Format "January 2, 2006" }}
|
|
|
|
{{ $lastMachine := .Lastmod.Format "2006-01-02T15:04:05-07:00" }}
|
|
|
|
<blockquote>
|
2024-06-25 20:44:12 -04:00
|
|
|
<p><b>reading time:</b> {{ lower .ReadingTime }} mins</p>
|
2024-06-25 20:39:48 -04:00
|
|
|
<p><b>first posted:</b> <time datetime="{{ $dateMachine }}">{{ lower $dateHuman }}</time></p>
|
|
|
|
{{ if ne $lastUpdated $dateHuman }}
|
|
|
|
<p><b>last updated:</b> <time datetime="{{ $lastMachine }}">{{ lower $lastUpdated }}</time></p>
|
|
|
|
{{ end }}
|
|
|
|
</blockquote>
|
|
|
|
<hr>
|
|
|
|
<h4>table of contents</h4>
|
|
|
|
{{ .TableOfContents }}
|
|
|
|
<hr>
|
|
|
|
{{ .Content }}
|
|
|
|
</article>
|
|
|
|
{{ end }}
|