shithub: hugo

Download patch

ref: 37676a25c6dadf4dbd40eb54f6442f5550089800
parent: 72a66972b676408f14ac75763f8de3f116f59299
author: digitalcraftsman <[email protected]>
date: Fri Nov 27 10:21:22 EST 2015

Docs: improve quickstart guide

Fixes #1553

--- a/docs/content/overview/quickstart.md
+++ b/docs/content/overview/quickstart.md
@@ -37,6 +37,7 @@
 
       ▸ archetypes/
       ▸ content/
+      ▸ data/
       ▸ layouts/
       ▸ static/
         config.toml
@@ -86,10 +87,10 @@
 ## Step 4. Install some themes
 
 Hugo has rich theme support and a growing set of themes to choose from.
-To install all of the available Hugo themes, simply clone the entire **hugoThemes** repository from within your working directory:
+To install the latest version of all of the available Hugo themes, simply clone the entire **hugoThemes** repository from within your working directory:
 
 ```bash
-$ git clone --recursive https://github.com/spf13/hugoThemes themes
+$ git clone --depth 1 --recursive https://github.com/spf13/hugoThemes.git themes
 ```
 
 ## Step 5. Run Hugo
@@ -98,13 +99,16 @@
 server` and Hugo will find an available port and run a server with
 your content:
 
-    $ hugo server --theme=hyde --buildDrafts
+    $ 2 of 2 drafts rendered
+    0 future content
     2 pages created
+    0 paginator pages created
     0 tags created
     0 categories created
-    in 5 ms
-    Serving pages from exampleHugoSite/public
-    Web Server is available at http://localhost:1313
+    in 15 ms
+    Watching for changes in /home/user/exampleHugoSite/{data,content,layouts,static,themes}
+    Serving pages from memory
+    Web Server is available at http://localhost:1313/ (bind address 127.0.0.1)
     Press Ctrl+C to stop
 
 We specified two options here:
@@ -129,7 +133,7 @@
 
 Stop the Hugo process by hitting <kbd>Ctrl</kbd>+<kbd>C</kbd>. Then run the following:
 
-    $ hugo server --theme=hyde --buildDrafts --watch
+    $ hugo server --theme=hyde --buildDrafts
     2 pages created
     0 tags created
     0 categories created
@@ -148,12 +152,15 @@
 
 Change and save this file. Notice what happened in your terminal:
 
-    Change detected, rebuilding site
-
+    $ Change detected, rebuilding site
+    2015-11-27 15:13 +0100
+    2 of 2 drafts rendered
+    0 future content
     2 pages created
+    0 paginator pages created
     0 tags created
     0 categories created
-    in 5 ms
+    in 11 ms
 
 ## Step 7. Have fun