Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/djuelg/Shapez-Theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'content/post/toc.md')
-rw-r--r--content/post/toc.md38
1 files changed, 0 insertions, 38 deletions
diff --git a/content/post/toc.md b/content/post/toc.md
deleted file mode 100644
index edc9b07..0000000
--- a/content/post/toc.md
+++ /dev/null
@@ -1,38 +0,0 @@
----
-lastmod: 2015-01-27
-date: 2013-07-09
-menu:
- main:
- parent: extras
-next: /extras/urls
-prev: /extras/highlighting
-title: Table of Contents
-weight: 100
----
-
-Hugo will automatically parse the Markdown for your content and create
-a Table of Contents you can use to guide readers to the sections within
-your content.
-
-## Usage
-
-Simply create content like you normally would with the appropriate
-headers.
-
-Hugo will take this Markdown and create a table of contents stored in the
-[content variable](/layout/variables/) `.TableOfContents`
-
-
-## Template Example
-
-This is example code of a [single.html template](/layout/content/).
-
- {{ partial "header.html" . }}
- <div id="toc" class="well col-md-4 col-sm-6">
- {{ .TableOfContents }}
- </div>
- <h1>{{ .Title }}</h1>
- {{ .Content }}
- {{ partial "footer.html" . }}
-
-