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