blob: 0c74e026defe03f0f1b367decc88e1e6b5afebab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
{{ define "main" }}
<div class="post-page">
<div class="page-header">
<h1>{{ .Title }}</h1>
{{ if .Date }}
{{ $dateMachine := .Date | time.Format "2006-01-02T15:04:05-07:00" }}
{{ $dateHuman := .Date | time.Format ":date_long" }}
<time datetime="{{ $dateMachine }}" class="page-date">{{ $dateHuman }}</time>
{{ end }}
</div>
<div class="page-content">
{{ .Content }}
</div>
{{ partial "terms.html" (dict "taxonomy" "tags" "page" .) }}
</div>
{{ end }}
|