Welcome to mirror list, hosted at ThFree Co, Russian Federation.

header.html « partials « layouts - github.com/damiencaselli/paperback.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 64fe71b303c8e46042499dda54c4ca9f58b22aba (plain)
1
2
3
4
5
6
7
8
9
10
11
<header>
  <h1>{{ .Title }}</h1>

  {{ if ne .IsNode true }}
  <time datetime="{{ .Date }}">{{ dateFormat "2006/01/02" .Date }}</time>
  {{ end }}

  {{ if and .IsHome (isset .Site.Params "Tagline") }}
  <p>{{ .Site.Params.Tagline }}</p>
  {{ end }}
</header>