docs: add ToC to some more pages
authorbep <bjorn.erik.pedersen@gmail.com>
Fri, 22 May 2015 18:46:09 +0000 (20:46 +0200)
committerbep <bjorn.erik.pedersen@gmail.com>
Fri, 22 May 2015 18:45:52 +0000 (20:45 +0200)
17 files changed:
docs/content/content/archetypes.md
docs/content/content/front-matter.md
docs/content/content/organization.md
docs/content/content/types.md
docs/content/taxonomies/displaying.md
docs/content/taxonomies/ordering.md
docs/content/templates/content.md
docs/content/templates/go-templates.md
docs/content/templates/list.md
docs/content/templates/overview.md
docs/content/templates/partials.md
docs/content/templates/rss.md
docs/content/templates/terms.md
docs/content/templates/variables.md
docs/content/templates/views.md
docs/content/themes/customizing.md
docs/content/tutorials/mathjax.md

index 898c0f6baa24f413d2dea9167413003bb09fce04..8461fc798252a025af3209c44375da989d09b1b8 100644 (file)
@@ -7,6 +7,7 @@ next: /content/ordering
 prev: /content/types
 title: Archetypes
 weight: 50
+toc: true
 ---
 
 Hugo v0.11 introduced the concept of a content builder. Using the
index a733215a4a388604cd273f2c34567e17613c1d04..31bf52b5a421a3b485caf1da9eedfe4fed3ac594 100644 (file)
@@ -9,6 +9,7 @@ next: /content/sections
 prev: /content/organization
 title: Front Matter
 weight: 20
+toc: true
 ---
 
 The **front matter** is one of the features that gives Hugo its strength. It enables
@@ -25,7 +26,7 @@ Supported formats:
 [YAML]: http://www.yaml.org/ "YAML Ain't Markup Language"
 [JSON]: http://www.json.org/ "JavaScript Object Notation"
 
-### TOML Example
+## TOML Example
 
     +++
     title = "spf13-vim 3.0 release and new website"
@@ -41,7 +42,7 @@ Supported formats:
     
     Content of the file goes Here
 
-### YAML Example
+## YAML Example
 
     ---
     title: "spf13-vim 3.0 release and new website"
@@ -56,7 +57,7 @@ Supported formats:
     
     Content of the file goes Here
 
-### JSON Example
+## JSON Example
 
     {
         "title": "spf13-vim 3.0 release and new website",
index 7b887ef78eda9936eb66a4af9c7c83f05944d9bb..9a218c0f8d6623ca7661a144e2093b765a980acb 100644 (file)
@@ -10,6 +10,7 @@ next: /content/front-matter
 prev: /overview/source-directory
 title: Content Organization
 weight: 10
+toc: true
 ---
 
 Hugo uses Markdown files with headers commonly called the *front matter*. Hugo
index 246ab7368f10807afb1b2ee86361e8a5c58d17df..90b4e0cf3e687a5bebdd0e316efcab08195addf2 100644 (file)
@@ -8,6 +8,7 @@ next: /content/archetypes
 prev: /content/sections
 title: Content Types
 weight: 40
+toc: true
 ---
 
 Hugo has full support for different types of content. A content type can have a
index 1d8e8c0d05adef9ae98886aad27fbf33ed3314d1..78a221e0df7da1f94e96aeff6b01b0f2b868f198 100644 (file)
@@ -10,6 +10,7 @@ next: /taxonomies/templates
 prev: /taxonomies/usage
 title: Displaying Taxonomies
 weight: 20
+toc: true
 ---
 
 There are four common ways you can display the data in your
index 7dfaf405b22700c5328db7ccf13740ae205c56de..f5d013a47a7466ac74082d2638a585e0c2376a4f 100644 (file)
@@ -11,6 +11,7 @@ next: /taxonomies/methods
 prev: /taxonomies/templates
 title: Ordering Taxonomies
 weight: 60
+toc: true
 ---
 
 Hugo provides the ability to both:
@@ -22,7 +23,7 @@ Hugo provides the ability to both:
 ## Ordering Taxonomies
 Taxonomies can be ordered by either alphabetical key or by the number of content pieces assigned to that key.
 
-### Order Alphabetically Example:
+### Order Alphabetically Example
 
     <ul>
     {{ $data := .Data }}
@@ -31,7 +32,7 @@ Taxonomies can be ordered by either alphabetical key or by the number of content
     {{ end }}
     </ul>
 
-### Order by Popularity Example:
+### Order by Popularity Example
 
     <ul>
     {{ $data := .Data }}
index d0608576d2675a62704a02f458a966e4f7d84c6f..899d9f1ed05abd54f0859b4a7253a601352d386e 100644 (file)
@@ -10,6 +10,7 @@ next: /templates/list
 prev: /templates/variables
 title: Single Content Template
 weight: 30
+toc: true
 ---
 
 The primary view of content in Hugo is the single view. Hugo, for every
@@ -61,7 +62,7 @@ same as the other types, but the directory must be called "\_default".
           single.html
 
 
-## post/single.html
+### post/single.html
 This content template is used for [spf13.com](http://spf13.com/).
 It makes use of [partial templates](/templates/partials/)
 
@@ -109,7 +110,7 @@ It makes use of [partial templates](/templates/partials/)
     {{ partial "footer.html" . }}
 
 
-## project/single.html
+### project/single.html
 This content template is used for [spf13.com](http://spf13.com/).
 It makes use of [partial templates](/templates/partials/)
 
index b65294c013ff715162608848ed3cfc5a98d8bc89..e66af25f18821c244942450f239211511096862b 100644 (file)
@@ -10,6 +10,7 @@ next: /templates/ace
 prev: /templates/overview
 title: Go Template Primer
 weight: 15
+toc: true
 ---
 
 Hugo uses the excellent [Go][] [html/template][gohtmltemplate] library for
index 6e24e21e63d80d5235fac7108eafe49feb58bc35..7e6cb45686fff2cf572aa54b1b129a44a7ab1bb7 100644 (file)
@@ -10,6 +10,7 @@ next: /templates/homepage
 prev: /templates/content
 title: Content List Template
 weight: 40
+toc: true
 ---
 
 A list template is any template that will be used to render multiple pieces of
index f875e7299247dc1de7e2ee039f7e2c914b5dff3c..e102985788ba13579ed3167e506472c2941fce23 100644 (file)
@@ -12,6 +12,7 @@ next: /templates/go-templates
 prev: /themes/creation
 title: Hugo Templates
 weight: 10
+toc: true
 ---
 
 Hugo uses the excellent Go html/template library for its template engine.
index be81058acc49b5c0587e0851dc869e4caf3ae656..756695c82d3c6b52611636a4d52c752b597b24da 100644 (file)
@@ -9,6 +9,7 @@ next: /templates/rss
 prev: /templates/views
 title: Partial Templates
 weight: 80
+toc: true
 ---
 
 In practice, it's very convenient to split out common template portions into a
index 8de1df5c91557f7c3cdd6f71f1b35a4abe01f493..2d5d9bee52eded4fa69ce077b56418cdf8f80fd0 100644 (file)
@@ -11,6 +11,7 @@ notoc: one
 prev: /templates/partials
 title: RSS (feed) Templates
 weight: 90
+toc: true
 ---
 
 Like all other templates, you can use a single RSS template to generate all of your RSS feeds, or you can create a specific template for each individual feed. 
index 47692ec176259faa9bb183c1f0363be2362cf457..7f282ef746852d267f31ce237fe412e06d668797 100644 (file)
@@ -12,6 +12,7 @@ next: /templates/views
 prev: /templates/homepage
 title: Taxonomy Terms Template
 weight: 60
+toc: true
 ---
 
 A unique template is needed to create a list of the terms for a given
index 3b8660d32dc1a2bc1c40d40c10b8caf5a0a40e61..8506fb1d686ee64aa9c4f129fbe01be23eefe460 100644 (file)
@@ -11,6 +11,7 @@ next: /templates/content
 prev: /templates/functions
 title: Template Variables
 weight: 20
+toc: true
 ---
 
 Hugo makes a set of values available to the templates. Go templates are context based. The following
index 23457b50193269ae7f2efcc4975f3e61d5be09d1..fb540c64557cd46cf31eadf552a85d004b43c4e9 100644 (file)
@@ -9,6 +9,7 @@ next: /templates/partials
 prev: /templates/terms
 title: Content Views
 weight: 70
+toc: true
 ---
 
 In addition to the [single content template](/templates/content/), Hugo can render alternative views of
index ec66be71263db61009cbb4c1ee4c4f01c7b40cb9..81f6ad346a0160f7cb5c93930f728d80f5d22fae 100644 (file)
@@ -7,6 +7,7 @@ next: /themes/creation
 prev: /themes/usage
 title: Customizing a Theme
 weight: 40
+toc: true
 ---
 
 _The following are key concepts for Hugo site customization. Hugo permits you to **supplement or override** any theme template or static file, with files in your working directory._ 
index 5d3da6332b2b3bad82db9a0e19166797eb0f2613..8324a2d8d7d2518ce48c55256b2a1296827c8e40 100644 (file)
@@ -7,6 +7,7 @@ menu:
 next: /tutorials/migrate-from-jekyll
 prev: /tutorials/installing-on-windows
 title: MathJax Support
+toc: true
 weight: 10
 ---