aboutsummaryrefslogtreecommitdiff
path: root/layouts/_default
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/_default')
-rw-r--r--layouts/_default/single.html17
1 files changed, 13 insertions, 4 deletions
diff --git a/layouts/_default/single.html b/layouts/_default/single.html
index 4f21ded..524145a 100644
--- a/layouts/_default/single.html
+++ b/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 }}