minor documentation cleanup.
authorKyle Mahan <kyle.mahan@gmail.com>
Mon, 30 Sep 2013 02:37:29 +0000 (19:37 -0700)
committerNoah Campbell <noahcampbell@gmail.com>
Mon, 30 Sep 2013 02:50:25 +0000 (19:50 -0700)
- changed it's -> its where appropriate.
- added post/ parent directory above happy/ to the organization examples

Signed-off-by: Noah Campbell <noahcampbell@gmail.com>
docs/content/content/front-matter.md
docs/content/content/organization.md
docs/content/content/types.md
docs/content/extras/shortcodes.md
docs/content/layout/go-templates.md
docs/content/layout/index.md
docs/content/layout/templates.md

index 0a409c56aa06d9caf7e0d9843ac960099fdc27ae..57b1170dfa7e8db78fdfd29d7c075e53e90b7d7b 100644 (file)
@@ -4,7 +4,7 @@ date = "2013-07-01"
 aliases = ["/doc/front-matter/"]
 +++
 
-The front matter is one of the features that gives Hugo it's strength. It enables
+The front matter is one of the features that gives Hugo its strength. It enables
 you to include the meta data of the content right with it. Hugo supports a few
 different formats each with their own identifying tokens.
 
index f9eba097aa6a9dd9381d3e549b8be735880d2d92..2ec09f8da027bd125c00a1ded4ff9ab07cc56ba4 100644 (file)
@@ -19,7 +19,7 @@ content nested at any level. The top level is special in Hugo and is used as the
         ├── post
         |   ├── firstpost.md       // <- http://site.com/post/firstpost/
         |   ├── happy
-        |   |   └── happiness.md   // <- http://site.com/happy/happiness/
+        |   |   └── happiness.md   // <- http://site.com/post/happy/happiness/
         |   └── secondpost.md      // <- http://site.com/post/secondpost/
         └── quote
             ├── first.md           // <- http://site.com/quote/first/
@@ -32,7 +32,7 @@ content nested at any level. The top level is special in Hugo and is used as the
         ├── post
         |   ├── firstpost.md       // <- http://site.com/post/firstpost.html
         |   ├── happy
-        |   |   └── happiness.md   // <- http://site.com/happy/happiness.html
+        |   |   └── happiness.md   // <- http://site.com/post/happy/happiness.html
         |   └── secondpost.md      // <- http://site.com/post/secondpost.html
         └── quote
             ├── first.md           // <- http://site.com/quote/first.html
index 8f535454c84b5742347d2164c2f73051613bc1df..7855885baa6ab20a3d24aa84a88b741c342e88fb 100644 (file)
@@ -3,7 +3,7 @@ title: "Content Types"
 date: "2013-07-01"
 ---
 
-Hugo has full support for multiple content types each with it's own set
+Hugo has full support for multiple content types each with its own set
 of meta data and template. A good example of when multiple types are
 needed is to look a tumblr. A piece of content could be a photo, quote
 or post, each with different meta data and rendered differently.
index a288fe58595fe9c237c6b32ead9deb67b37e1697..bf9004661739dee87e03dddbbfd2dc3465f4a3ca 100644 (file)
@@ -4,7 +4,7 @@ date: "2013-07-01"
 aliases: ["/doc/shortcodes/"]
 ---
 
-Because Hugo uses markdown for it's content format, it was clear that there's a lot of things that 
+Because Hugo uses markdown for its content format, it was clear that there's a lot of things that 
 markdown doesn't support well. This is good, the simple nature of markdown is exactly why we chose it.
 
 However we cannot accept being constrained by our simple format. Also unacceptable is writing raw
index b3c15a09ad8949ddeeaab08c84b0cd55fefab297..2e082ee0614865dc748a7ffb4fa46f3656deaac2 100644 (file)
@@ -3,7 +3,7 @@ title: "Go Templates"
 date: "2013-07-01"
 ---
 
-Hugo uses the excellent golang html/template library for it's template engine.
+Hugo uses the excellent golang html/template library for its template engine.
 It is an extremely lightweight engine that provides a very small amount of
 logic. In our experience that it is just the right amount of logic to be able to
 create a good static website.
index 7184bbf6af793c2a126659781ada9dccb1633b87..307e5460dbb7da95b30f6e6d061842af1ceaa756 100644 (file)
@@ -7,7 +7,7 @@ An index template is any template that will be used to render multiple pieces of
 content (with the exception of the [homepage](/layout/homepage) which has a
 dedicated template).
 
-We are using the term index in it's truest sense, a sequential arrangement of
+We are using the term index in its truest sense, a sequential arrangement of
 material, especially in alphabetical or numerical order. In the case of Hugo
 each index will render the content in newest first order based on the date
 provided in the [front matter](/content/front-matter).
index 4dd6affa939952fe939492fe5a956d3fd007954f..833546fccde8778ff6ee76a41409fcdd81b8c90c 100644 (file)
@@ -4,7 +4,7 @@ date: "2013-07-01"
 aliases: ["/doc/templates/"]
 ---
 
-Hugo uses the excellent golang html/template library for it's template engine.
+Hugo uses the excellent golang html/template library for its template engine.
 It is an extremely lightweight engine that provides a very small amount of
 logic. In our experience that it is just the right amount of logic to be able
 to create a good static website