aboutsummaryrefslogtreecommitdiffstats
path: root/site/layouts/post/single.html
blob: bc34c45402d6dbb0322e8d20a2b60b6ee16e202f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{{ define "main" }}

  <div class="mw6 center ph3 pv4">
    <h1 class="f2 lh-title b mb3">{{.Title}}</h1>
    <div class="flex justify-between grey-3">
      <p>{{ .Date.Format "Mon, Jan 2, 2006" }}</p>
      <p>Read in {{ .ReadingTime }} minutes</p>
    </div>
    <div class="cms mw6">
      <p>{{ .Description }}</p>
      {{ if .Params.image }}<img src="{{ .Params.image }}" alt="{{ .Title }}" />{{ end }}
      {{ .Content }}
    </div>
  </div>
{{ end }}