diff options
Diffstat (limited to '')
-rw-r--r-- | users/fcuny/blog/layouts/_default/single.html | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/users/fcuny/blog/layouts/_default/single.html b/users/fcuny/blog/layouts/_default/single.html index 4f21ded..524145a 100644 --- a/users/fcuny/blog/layouts/_default/single.html +++ b/users/fcuny/blog/layouts/_default/single.html @@ -1,6 +1,6 @@ {{ define "main" }} -<article class="article"> +<div> <h1>{{ .Title }}</h1> @@ -32,14 +32,23 @@ </div> {{ if .Params.toc }} -<div class="toc"> - <strong>Table of Contents</strong> +<div id="toc_small"> + <summary>Table of contents</summary> {{ .TableOfContents }} </div> {{ end }} +<article class="article"> {{ .Content }} +</article> + +</div> -<article> +{{ if .Params.toc }} +<div class="toc"> + <strong>Table of contents</strong> + {{ .TableOfContents }} +</div> +{{ end }} {{ end }} |