2018-11-24 15:14:43 +01:00
|
|
|
{{ define "main" }}
|
2019-03-29 16:59:00 +01:00
|
|
|
{{- $dateFormat := default "January 2, 2006" .Site.Params.BookDateFormat -}}
|
2018-11-25 11:59:42 +01:00
|
|
|
<header>
|
|
|
|
<h1>{{ .Title }}</h1>
|
2018-11-25 13:30:25 +01:00
|
|
|
<h5>
|
2019-03-29 16:59:00 +01:00
|
|
|
<strong>{{ .Date.Format $dateFormat }}</strong>
|
2018-11-25 13:30:25 +01:00
|
|
|
</h5>
|
2018-11-25 11:59:42 +01:00
|
|
|
</header>
|
|
|
|
<article class="markdown">
|
|
|
|
{{- .Content -}}
|
|
|
|
</article>
|
2018-11-25 13:30:25 +01:00
|
|
|
{{ end }}
|