| 12345678910111213141516171819202122 |
- {{ define "main" }}
- {{- partial "header.html" . -}}
- <div class="container single page">
- <aside>
- {{ .TableOfContents }}
- </aside>
- <article>
- {{ with .Date }}<h3>{{ .Format "January 2, 2006" }} - {{ $.Param "author" }}</h3>{{ end }}
- <h1>{{ .Title }}</h1>
-
- {{ .Content }}
- </article>
- {{- partial "footer.html" . -}}
- </div>
- {{ end }}
|