URI: 
       Add config file example to variables.md - hugo - [fork] hugo port for 9front
  HTML git clone git@git.drkhsh.at/hugo.git
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
   DIR README
   DIR LICENSE
       ---
   DIR commit dca6eabacad428c4c78bc83a0d82126285ba1290
   DIR parent 0b7392b3dbfc7a0e7e926fa0b207de0eaee46023
  HTML Author: philgs <phil.gs@gmail.com>
       Date:   Mon,  5 Jan 2015 05:49:10 -0500
       
       Add config file example to variables.md
       
       Add a config file example for setting .Site.Params to variables.md. This addresses my confusion in [issue #766](https://github.com/spf13/hugo/issues/766).
       
       Diffstat:
         M docs/content/templates/variables.md |       8 +++++++-
       
       1 file changed, 7 insertions(+), 1 deletion(-)
       ---
   DIR diff --git a/docs/content/templates/variables.md b/docs/content/templates/variables.md
       @@ -83,4 +83,10 @@ Also available is `.Site` which has the following:
        **.Site.Taxonomies** The indexes for the entire site.<br>
        **.Site.LastChange** The date of the last change of the most recent content.<br>
        **.Site.Recent** Array of all content ordered by Date, newest first.<br>
       -**.Site.Params** A container holding the values from `params` in your site configuration file.<br>
       +**.Site.Params** A container holding the values from the `params` section of your site configuration file. For example, a TOML config file might look like this:
       +
       +    baseurl = "http://yoursite.example.com/"
       +
       +    [params]
       +      description = "Tesla's Awesome Hugo Site"
       +      author = "Nikola Tesla"