1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{{ define "main" }}
<article class="column">
<header class="post-header rise">
<p class="post-kicker">
{{ with .Date }}
<time datetime="{{ .Format "2006-01-02T15:04:05Z07:00" }}">{{ .Format "2006-01-02" }}</time>
<span class="sep" aria-hidden="true">·</span>
{{ end }}
<span>{{ .ReadingTime }} min read</span>
</p>
<h1 class="post-title">{{ .Title }}</h1>
<hr class="post-rule">
</header>
<div class="post-body prose">{{ .Content }}</div>
</article>
{{ end }}
|