13 lines
313 B
HTML
13 lines
313 B
HTML
{{ define "main" }}
|
|
{{ partial "article-header.html" . }}
|
|
<main>
|
|
<article>
|
|
{{ partial "rendered-content.html" . }}
|
|
{{ partial "article-books.html" . }}
|
|
{{ partial "article-asides.html" . }}
|
|
{{ partial "article-footer.html" . }}
|
|
</article>
|
|
{{ partial "asides/toc.html" . }}
|
|
</main>
|
|
{{ end }}
|