From ade75a2a9ccad33daf5f4d0cc8a045ea47302821 Mon Sep 17 00:00:00 2001 From: jrfnl Date: Tue, 16 Feb 2016 20:08:50 +0100 Subject: Fix misleading documentation. (cherry picked from commit 4b311ce3ffe6dd74cb56abe9cfbc4e8f69e2e5ff) --- theme-setup/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/theme-setup/index.md b/theme-setup/index.md index 0e3f7e6..a8e2eb1 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 -- cgit v1.2.3 From cd17cec4b7a97b56f132cc8c8749d9eba465d6b2 Mon Sep 17 00:00:00 2001 From: jrfnl Date: Tue, 16 Feb 2016 20:26:51 +0100 Subject: Fix avatar path adjustment information. --- theme-setup/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/theme-setup/index.md b/theme-setup/index.md index a8e2eb1..32624f7 100644 --- a/theme-setup/index.md +++ b/theme-setup/index.md @@ -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 -- cgit v1.2.3 From e682996ef4d3a4fcbdfb1de18752f18a2adf5dc0 Mon Sep 17 00:00:00 2001 From: jrfnl Date: Tue, 16 Feb 2016 20:42:30 +0100 Subject: Fix code fence. (cherry picked from commit 11e96c8f74d112a9e177e30a9dfcfcf4b867092a) --- theme-setup/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/theme-setup/index.md b/theme-setup/index.md index 32624f7..285e169 100644 --- a/theme-setup/index.md +++ b/theme-setup/index.md @@ -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 -- cgit v1.2.3 From c4d18d873027358a4b84f88ea089c0c8af76bb0f Mon Sep 17 00:00:00 2001 From: jrfnl Date: Tue, 16 Feb 2016 23:10:20 +0100 Subject: Add missing words in sentence & change jekyll watch instruction. (cherry picked from commit 5b482d7e7acd700967a0c067f6ee043cffbc2cac) --- theme-setup/index.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/theme-setup/index.md b/theme-setup/index.md index 285e169..c546119 100644 --- a/theme-setup/index.md +++ b/theme-setup/index.md @@ -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. --- -- cgit v1.2.3