diff options
Diffstat (limited to 'themes/hugo-book/layouts/posts/single.html')
| -rw-r--r-- | themes/hugo-book/layouts/posts/single.html | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/themes/hugo-book/layouts/posts/single.html b/themes/hugo-book/layouts/posts/single.html new file mode 100644 index 0000000..cebdd11 --- /dev/null +++ b/themes/hugo-book/layouts/posts/single.html @@ -0,0 +1,15 @@ +{{ define "main" }} +<article class="markdown book-post"> + <h1> + {{ partial "docs/title.html" . }} + </h1> + {{ partial "docs/post-meta" . }} + <div class="book-post-content"> + {{- .Content -}} + </div> +</article> +{{ end }} + +{{ define "toc" }} + {{ partial "docs/toc" . }} +{{ end }} |
