From 02b60d6d00c68c02ddacf13fe2caffc594cc9813 Mon Sep 17 00:00:00 2001 From: Parker Moore Date: Fri, 1 Aug 2014 23:59:57 -0400 Subject: [PATCH 1/2] Add helpful comments to site template _config.yml --- lib/site_template/_config.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/lib/site_template/_config.yml b/lib/site_template/_config.yml index ae45638b..f51539b9 100644 --- a/lib/site_template/_config.yml +++ b/lib/site_template/_config.yml @@ -1,9 +1,12 @@ # Site settings title: Your awesome title email: your-email@domain.com -description: "Write an awesome description for your new site here. You can edit this line in _config.yml. It will appear in your document head meta (for Google search results) and in your feed.xml site description." -baseurl: "" -url: "http://yourdomain.com" +description: > # this means to ignore newlines until "baseurl:" + Write an awesome description for your new site here. You can edit this + line in _config.yml. It will appear in your document head meta (for + Google search results) and in your feed.xml site description. +baseurl: "" # the subpath of your site, e.g. /blog/ +url: "http://yourdomain.com" # the base hostname & protocol for your site twitter_username: jekyllrb github_username: jekyll From e44cfe29a86c5c7fb7556dda86929396e896efb7 Mon Sep 17 00:00:00 2001 From: Parker Moore Date: Sat, 2 Aug 2014 00:01:59 -0400 Subject: [PATCH 2/2] No longer set "permalink: pretty" in the _config.yml for the site template MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This causes unintuitive behaviour that doesn’t align with the documentation. Fixes #2399. --- lib/site_template/_config.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/site_template/_config.yml b/lib/site_template/_config.yml index f51539b9..2f03e74d 100644 --- a/lib/site_template/_config.yml +++ b/lib/site_template/_config.yml @@ -12,4 +12,3 @@ github_username: jekyll # Build settings markdown: kramdown -permalink: pretty