2018-11-24 15:14:43 +01:00
|
|
|
{{ define "main" }}
|
2019-12-14 13:31:11 +01:00
|
|
|
{{ $dateFormat := default "January 2, 2006" .Site.Params.BookDateFormat }}
|
|
|
|
<header class="markdown">
|
|
|
|
<h1>{{ .Title }}</h1>
|
|
|
|
{{ with .Date }}
|
|
|
|
<h5>
|
|
|
|
<strong>{{ .Format $dateFormat }}</strong>
|
|
|
|
</h5>
|
|
|
|
{{ end }}
|
|
|
|
</header>
|
|
|
|
<article class="markdown">
|
|
|
|
{{- .Content -}}
|
|
|
|
</article>
|
2018-11-25 13:30:25 +01:00
|
|
|
{{ end }}
|
2019-09-22 13:15:22 +02:00
|
|
|
|
|
|
|
{{ define "toc" }}
|
|
|
|
{{ partial "docs/toc" . }}
|
|
|
|
{{ end }}
|