single.html 329 B

1234567891011121314
  1. {{ define "main" }}
  2. <div class="blog-post">
  3. <header>
  4. <h1>{{ .Title }}</h1>
  5. <div class="date-author">
  6. <strong>{{ .Date.Format "January 2, 2006" }}</strong> by {{ .Params.author }}
  7. </div>
  8. </header>
  9. <article class="markdown">
  10. {{- .Content -}}
  11. </article>
  12. </div>
  13. {{ end }}