15 lines
255 B
HTML
Raw Normal View History

2022-08-26 15:15:25 +08:00
{{ define "main" }}
<article>
<h1>{{ .Title }}</h1>
2023-04-14 13:45:44 +01:00
{{ if .Params.toc }}
<aside {{ if .Params.tocBorder }} class="toc" {{ end }}>
{{ .TableOfContents }}
</aside>
{{ end }}
2022-08-26 15:15:25 +08:00
{{ .Content }}
</article>
{{ end }}