diff options
author | Franck Cuny <franck@fcuny.net> | 2021-08-15 13:46:47 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2021-08-15 13:46:47 -0700 |
commit | 9ab556530d088ed2046f9e1fd2ffe92783b9cfaf (patch) | |
tree | e90395dbccb233d993df3e8aa1d6056000299521 /users/fcuny/blog/layouts/_default/single.html | |
parent | CSS: use a class for the menu (diff) | |
download | world-9ab556530d088ed2046f9e1fd2ffe92783b9cfaf.tar.gz |
CSS: support table of content
If an entry has the parameter `#+toc` set to `t`, we will enable the table of content in the page.
Diffstat (limited to '')
-rw-r--r-- | users/fcuny/blog/layouts/_default/single.html | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/users/fcuny/blog/layouts/_default/single.html b/users/fcuny/blog/layouts/_default/single.html index 356f344..b4c5443 100644 --- a/users/fcuny/blog/layouts/_default/single.html +++ b/users/fcuny/blog/layouts/_default/single.html @@ -29,6 +29,13 @@ {{ end }} </div> +{{ if .Params.toc }} +<div class="toc"> + <strong>Table of Contents</strong> + {{ .TableOfContents }} +</div> +{{ end }} + {{ .Content }} {{ end }} |