summaryrefslogtreecommitdiff
path: root/layouts/_default/single.html
blob: c847a2be56c509acaf4b193018820e66539d7dad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{{ define "main"}}
<main aria-role="main">
  <div class="content is-normal mx-3">
      <p class="title is-3"><i class="fas fa-file"></i> {{.Page.Title}}</p>
      <p class="subtitle is-4">{{.Page.Description}}</p>
      {{ $dateFormat := .Site.Params.dateFormat | default "January 2, 2006"}}
      <p class="date">Published on {{ .PublishDate.Format $dateFormat }}{{ if ne .Lastmod .PublishDate }}, last updated on {{ .Lastmod.Format $dateFormat }}
      {{ end }}
      </p>
    {{ .Content }}
  </div>
</main>
{{ end }}