Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dldx/hpstr-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Rose <mmistakes@users.noreply.github.com>2016-02-17 04:36:47 +0300
committerMichael Rose <mmistakes@users.noreply.github.com>2016-02-17 04:36:47 +0300
commitbc4786dad0f707245745b1d9446fc5b1a7f71481 (patch)
tree948af24137b01f61eae3973a6aff39e31e10b4e8
parent69ec4f50a9b5439b22291870174ce41c6c438485 (diff)
parentc4d18d873027358a4b84f88ea089c0c8af76bb0f (diff)
Merge pull request #139 from jrfnl/feature/hpstr/minor-documentation-fixes
Minor documentation fixes
-rw-r--r--theme-setup/index.md10
1 files changed, 6 insertions, 4 deletions
diff --git a/theme-setup/index.md b/theme-setup/index.md
index 0e3f7e6..c546119 100644
--- a/theme-setup/index.md
+++ b/theme-setup/index.md
@@ -100,7 +100,7 @@ comments: false
### Social Share Links
-To enable Facebook, Twitter, and Google+ share links on a post or page, add the following to its front matter:
+To disable Facebook, Twitter, and Google+ share links on a post or page, add the following to its front matter:
{% highlight yaml %}
share: false
@@ -108,7 +108,7 @@ share: false
### Owner/Author Information
-Change your name, and avatar photo (200x200 pixels or larger), email, and social networking URLs. If you want to link to an external image on Gravatar or something similar you'll need to edit the path in `head.html` since it assumes it is located in `/images`.
+Change your name, and avatar photo (200x200 pixels or larger), email, and social networking URLs. If you want to link to an external image on Gravatar or something similar you'll need to edit the path in `navigation.html` since it assumes it is located in `/images`.
### Google Analytics and Webmaster Tools
@@ -166,7 +166,7 @@ For the most part you can leave these as is since the author/owner details are p
### Reading Time
-On by default. To turn off remove `reading_time` from `_config.yml. Default words per minute is set at 200 and can changed by updating `words_per_minute` in `_config.yml`.
+On by default. To turn off remove `reading_time` from `_config.yml`. Default words per minute is set at 200 and can changed by updating `words_per_minute` in `_config.yml`.
### Feature Images
@@ -236,7 +236,9 @@ To modify the site's JavaScript files I setup a Grunt build script to lint/conca
npm install
{% endhighlight %}
-From the theme's root, use `grunt` concatenate JavaScript files, and optimize .jpg, .png, and .svg files in the `images/` folder. You can also use `grunt dev` in combination with `jekyll build --watch` to watch for updates JS files that Grunt will then automatically re-build as you write your code which will in turn auto-generate your Jekyll site when developing locally.
+From the theme's root, use `grunt` to concatenate JavaScript files and optimize `.jpg`, `.png` and `.svg` files in the `images/` folder.
+
+You can also use `grunt dev` in combination with `bundle exec jekyll serve` to watch for updates in JS files that Grunt will then automatically re-build as you write your code, which will in turn auto-generate your Jekyll site when developing locally.
---