mirror of
https://github.com/alex-shpak/hugo-book.git
synced 2024-11-22 11:29:28 +00:00
16 lines
289 B
HTML
16 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 }}
|