From 7cc440df1237d2e07304493a664f3a88a7da82fb Mon Sep 17 00:00:00 2001 From: Michael Rose Date: Thu, 14 Apr 2016 21:13:14 -0400 Subject: [PATCH] Fix broken links - Close #264 --- _docs/05-configuration.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/_docs/05-configuration.md b/_docs/05-configuration.md index b8084aa1..d35cc517 100644 --- a/_docs/05-configuration.md +++ b/_docs/05-configuration.md @@ -5,7 +5,7 @@ excerpt: "Settings for configuring and customizing the theme." sidebar: title: "v3.0.1" nav: docs -modified: 2016-04-13T15:54:02-04:00 +modified: 2016-04-14 --- {% include base_path %} @@ -402,7 +402,7 @@ defaults: layout: single ``` -And of course any default value can be overridden by settings in a post, page, or collection file. All you need to do is specify the settings in the YAML Front Matter. For more examples be sure to check out the demo site's [`_config.yml`]({{ site.gh_repo }}/blob/gh-pages/_config.yml). +And of course any default value can be overridden by settings in a post, page, or collection file. All you need to do is specify the settings in the YAML Front Matter. For more examples be sure to check out the demo site's [`_config.yml`]({{ site.gh_repo }}/gh-pages/_config.yml). ## Outputting @@ -468,7 +468,7 @@ tags: Which would create category and tag links in the breadcrumbs and page meta like: `/categories/#foo` and `/tags/#foo`. -**Note:** for these links to resolve properly, category and tag index pages need to exist at [`/categories/index.html`]({{ site.gh_repo }}/blob/gh-pages/_pages/category-archive.html) and [`/tags/index.html`]({{ site.gh_repo }}/blob/gh-pages/_pages/tag-archive.html). The necessary Liquid code to build these pages can be taken from the demo site. +**Note:** for these links to resolve properly, category and tag index pages need to exist at [`/categories/index.html`]({{ site.gh_repo }}/gh-pages/_pages/category-archive.html) and [`/tags/index.html`]({{ site.gh_repo }}/gh-pages/_pages/tag-archive.html). The necessary Liquid code to build these pages can be taken from the demo site. {: .notice--warning} If you have the luxury of using Jekyll Plugins then [**jekyll-archives**][jekyll-archives] will make your life much easier as category and tag pages are created for you.