single.html 390 B

12345678910111213141516171819202122
  1. {{ define "main" }}
  2. {{- partial "header.html" . -}}
  3. <div class="container single page">
  4. <aside>
  5. {{ .TableOfContents }}
  6. </aside>
  7. <article>
  8. {{ with .Date }}<h3>{{ .Format "January 2, 2006" }} - {{ $.Param "author" }}</h3>{{ end }}
  9. <h1>{{ .Title }}</h1>
  10. {{ .Content }}
  11. </article>
  12. {{- partial "footer.html" . -}}
  13. </div>
  14. {{ end }}