17 lines
414 B
HTML
17 lines
414 B
HTML
{{ partial "header.html" . }}
|
|
<main>
|
|
<div class="article-head">
|
|
<h1>{{ .Title }}</h1>
|
|
{{ if not .Date.IsZero }}
|
|
<time datetime="{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}">
|
|
<b>{{ .Date | time.Format ":date_medium" }}</b>
|
|
-
|
|
{{ .ReadingTime }} minutes read
|
|
</time>
|
|
{{ end }}
|
|
</div>
|
|
<article>
|
|
{{ .Content }}
|
|
</article>
|
|
</main>
|
|
{{ partial "footer.html" . }}
|