From 8fe78f6ff52496d4d3393495d6e598dceed15dda Mon Sep 17 00:00:00 2001
From: spf13 {{ . }}
{{ end }}
-**Example 5: If -> Else If **
+**Example 5: If -> Else If**
{{ if isset .Params "alt" }}
{{ index .Params "alt" }}
diff --git a/docs/content/layout/variables.md b/docs/content/layout/variables.md
index 6dc8147c7..d269c026f 100644
--- a/docs/content/layout/variables.md
+++ b/docs/content/layout/variables.md
@@ -28,6 +28,7 @@ matter, content or derived from file location.
**.LinkTitle** Access when creating links to this content. Will use linktitle if set in front-matter, else title
**.Indexes** These will use the field name of the plural form of the index (see tags and categories above)
**.RSSLink** Link to the indexes' rss link
+**.TableOfContents** The rendered table of contents for this content
**.Prev** Pointer to the previous content (based on pub date)
**.Next** Pointer to the following content (based on pub date)
**.FuzzyWordCount** The approximate number of words in the content.
diff --git a/docs/content/meta/release-notes.md b/docs/content/meta/release-notes.md
index 1308e5493..d6ba1fadc 100644
--- a/docs/content/meta/release-notes.md
+++ b/docs/content/meta/release-notes.md
@@ -5,10 +5,10 @@ aliases: ["/doc/release-notes/"]
groups: ["meta"]
groups_weight: 10
---
-## **0.10.0** Feb 15, 2014
- * Syntax [highlighting](/extras/highlighting) powered by pygments (**slow**)
+## **0.10.0** Feb 22, 2014
+ * [Syntax highlighting](/extras/highlighting) powered by pygments (**slow**)
* Ability to [sort content](/content/ordering) many more ways
- * Automatic [table of contents](http://XXXXXXXXXXXXX) generation
+ * Automatic [table of contents](/extras/toc) generation
* Support for unicode urls, aliases and indexes
* Configurable per-section [permalink](/extras/permalinks) pattern support
* Support for [paired shortcodes](/extras/shortcodes)
diff --git a/docs/content/overview/introduction.md b/docs/content/overview/introduction.md
index 93e18b4cb..3c24fb147 100644
--- a/docs/content/overview/introduction.md
+++ b/docs/content/overview/introduction.md
@@ -63,6 +63,8 @@ Hugo boasts the following features:
* ["Minutes to Read"](/layout/variables) functionality
* ["Wordcount"](/layout/variables) functionality
+See what's coming next in the [roadmap](/meta/roadmap)
+
## Who should use Hugo?
Hugo is for people that prefer writing in a text editor over
@@ -82,7 +84,9 @@ I wrote Hugo ultimately for a few reasons. First I was disappointed with
wordpress, my then website solution. It rendered slowly. I couldn't create
content as efficiently as I wanted to and needed to be online to write
posts. The constant security updates and the horror stories of people's
-hacked blogs.
+hacked blogs. I hated how content was written in HTML instead of the much
+simpler markdown. Overall I felt like it got in my way more than it helped
+my from writing great content.
I looked at existing static site generators like Jekyll, Middle and Nanoc.
All had complicated dependencies to install and took far longer to render
@@ -97,3 +101,11 @@ dependencies. The Go language seemed to have all of the features I needed
in a language. I began developing Hugo in Go and fell in love with the
language. I hope you will enjoy using (and contributing to) Hugo as much
as I have writing it.
+
+## Next Steps
+
+
+ * [Install Hugo](/overview/installing)
+ * [Quick start](/overview/quickstart)
+ * [Join the Mailing List](/community/mailing-list)
+ * [Star us on Github](http://github.com/spf13/hugo)
diff --git a/docs/layouts/_default/single.html b/docs/layouts/_default/single.html
index c37b28837..aa93d4f02 100644
--- a/docs/layouts/_default/single.html
+++ b/docs/layouts/_default/single.html
@@ -1,6 +1,5 @@
{{ template "chrome/header.html" . }}
- {{ if .Params.notoc }}
- {{ else }}
+ {{ if not .Params.notoc }}
github
- documentation
+ documentation
@@ -192,7 +192,7 @@
Hugo is developed with love by spf13, Noah and friends.
We welcome all contributions.
New to go? Not a problem, we will help you.
- Not a developer? Help with docs, templates and themes.
+ Not a developer? Help with docs, templates and themes.