aboutsummaryrefslogtreecommitdiff
path: root/layouts/posts/page.html
blob: dd21496e455aeb06c3c6991b1476705885e51bca (plain) (blame)
1
2
3
4
5
6
7
{{ define "main" }}
  <h1>{{ .Title }}</h1>
  {{ $dateMachine := .Date | time.Format "2006-01-02T15:04:05-07:00" }}
  {{ $dateHuman := .Date | time.Format "2006-01-02" }}
  <time datetime="{{ $dateMachine }}">{{ $dateHuman }}</time>
  {{ .Content }}
{{ end }}