15 lines
289 B
HTML
15 lines
289 B
HTML
{{ define "main" }}
|
|
<article class="markdown book-post">
|
|
<h2>
|
|
{{ partial "docs/title.html" . }}
|
|
</h2>
|
|
{{ partial "docs/post-meta" . }}
|
|
<div class="book-post-content">
|
|
{{- .Content -}}
|
|
</div>
|
|
</article>
|
|
{{ end }}
|
|
|
|
{{ define "toc" }}
|
|
{{ partial "docs/toc" . }}
|
|
{{ end }}
|