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 }}
|
2023-04-14 13:44:33 +01:00
|
|
|
<aside {{ if .Params.tocBorder }} class="toc" {{ end }}>
|
|
|
|
{{ .TableOfContents }}
|
|
|
|
</aside>
|
|
|
|
{{ end }}
|
|
|
|
|
2022-08-26 15:15:25 +08:00
|
|
|
{{ .Content }}
|
|
|
|
</article>
|
2023-04-14 13:44:33 +01:00
|
|
|
{{ end }}
|