mirror of
https://github.com/alex-shpak/hugo-book.git
synced 2025-03-01 02:33:44 +00:00
13 lines
289 B
HTML
13 lines
289 B
HTML
{{ define "main" }}
|
|
{{ $dateFormat := default "January 2, 2006" .Site.Params.BookDateFormat }}
|
|
<header class="markdown">
|
|
<h1>{{ .Title }}</h1>
|
|
<h5>
|
|
<strong>{{ .Date.Format $dateFormat }}</strong>
|
|
</h5>
|
|
</header>
|
|
<article class="markdown">
|
|
{{- .Content -}}
|
|
</article>
|
|
{{ end }}
|