summaryrefslogtreecommitdiff
path: root/themes/JustZvan/layouts/posts/single.html
blob: 2ead5ce82b158f3ca5945eee73b5f7075dfe37a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
{{ define "main" }}
  <article class="post-page">
    <h1>{{ .Title }}</h1>

    {{ $dateMachine := .Date | time.Format "2006-01-02T15:04:05-07:00" }}
    {{ $dateHuman := .Date | time.Format ":date_long" }}
    <time datetime="{{ $dateMachine }}">{{ $dateHuman }}</time>

    {{ .Content }}
  </article>
{{ end }}