You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112
  1. {{ define "main" }}
  2. {{- $dateFormat := default "January 2, 2006" .Site.Params.BookDateFormat -}}
  3. <header>
  4. <h1>{{ .Title }}</h1>
  5. <h5>
  6. <strong>{{ .Date.Format $dateFormat }}</strong>
  7. </h5>
  8. </header>
  9. <article class="markdown">
  10. {{- .Content -}}
  11. </article>
  12. {{ end }}