docs: add ToC to some more pages - hugo - [fork] hugo port for 9front
 (HTM) git clone git@git.drkhsh.at/hugo.git
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) Submodules
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit be4a404f28f11465a20890b22f80832bdf7959f2
 (DIR) parent be71fda559605ddf91c071431981f8e1f4d57598
 (HTM) Author: bep <bjorn.erik.pedersen@gmail.com>
       Date:   Fri, 22 May 2015 20:46:09 +0200
       
       docs: add ToC to some more pages
       
       Diffstat:
         M docs/content/content/archetypes.md  |       1 +
         M docs/content/content/front-matter.… |       7 ++++---
         M docs/content/content/organization.… |       1 +
         M docs/content/content/types.md       |       1 +
         M docs/content/taxonomies/displaying… |       1 +
         M docs/content/taxonomies/ordering.md |       5 +++--
         M docs/content/templates/content.md   |       5 +++--
         M docs/content/templates/go-template… |       1 +
         M docs/content/templates/list.md      |       1 +
         M docs/content/templates/overview.md  |       1 +
         M docs/content/templates/partials.md  |       1 +
         M docs/content/templates/rss.md       |       1 +
         M docs/content/templates/terms.md     |       1 +
         M docs/content/templates/variables.md |       1 +
         M docs/content/templates/views.md     |       1 +
         M docs/content/themes/customizing.md  |       1 +
         M docs/content/tutorials/mathjax.md   |       1 +
       
       17 files changed, 24 insertions(+), 7 deletions(-)
       ---
 (DIR) diff --git a/docs/content/content/archetypes.md b/docs/content/content/archetypes.md
       @@ -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
 (DIR) diff --git a/docs/content/content/front-matter.md b/docs/content/content/front-matter.md
       @@ -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",
 (DIR) diff --git a/docs/content/content/organization.md b/docs/content/content/organization.md
       @@ -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
 (DIR) diff --git a/docs/content/content/types.md b/docs/content/content/types.md
       @@ -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
 (DIR) diff --git a/docs/content/taxonomies/displaying.md b/docs/content/taxonomies/displaying.md
       @@ -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
 (DIR) diff --git a/docs/content/taxonomies/ordering.md b/docs/content/taxonomies/ordering.md
       @@ -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 }}
 (DIR) diff --git a/docs/content/templates/content.md b/docs/content/templates/content.md
       @@ -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/)
        
 (DIR) diff --git a/docs/content/templates/go-templates.md b/docs/content/templates/go-templates.md
       @@ -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
 (DIR) diff --git a/docs/content/templates/list.md b/docs/content/templates/list.md
       @@ -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
 (DIR) diff --git a/docs/content/templates/overview.md b/docs/content/templates/overview.md
       @@ -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.
 (DIR) diff --git a/docs/content/templates/partials.md b/docs/content/templates/partials.md
       @@ -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
 (DIR) diff --git a/docs/content/templates/rss.md b/docs/content/templates/rss.md
       @@ -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. 
 (DIR) diff --git a/docs/content/templates/terms.md b/docs/content/templates/terms.md
       @@ -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
 (DIR) diff --git a/docs/content/templates/variables.md b/docs/content/templates/variables.md
       @@ -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
 (DIR) diff --git a/docs/content/templates/views.md b/docs/content/templates/views.md
       @@ -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
 (DIR) diff --git a/docs/content/themes/customizing.md b/docs/content/themes/customizing.md
       @@ -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._ 
 (DIR) diff --git a/docs/content/tutorials/mathjax.md b/docs/content/tutorials/mathjax.md
       @@ -7,6 +7,7 @@ menu:
        next: /tutorials/migrate-from-jekyll
        prev: /tutorials/installing-on-windows
        title: MathJax Support
       +toc: true
        weight: 10
        ---