From 0e68e60cb0e64fe530769e7de58e068779e68b3a Mon Sep 17 00:00:00 2001 From: Nicolas Kuttler Date: Fri, 13 Feb 2015 07:50:25 +0100 Subject: Use permanent URIS Unfortunately URI routing sucks in jekyll, see http://jekyllrb.com/docs/permalinks/. It's easy enough to get /foo/bar/title/ for posts and articles, but pages are a different matter. There are a few unresolved bug reports, and the best solution seems to be to hardcode the URI into every page. http://www.w3.org/Provider/Style/URI --- _config.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to '_config.yml') diff --git a/_config.yml b/_config.yml index 1df1331..007727b 100644 --- a/_config.yml +++ b/_config.yml @@ -1,4 +1,4 @@ -permalink: "/:year/:month/:day/:title" +permalink: "/:year/:month/:day/:title/" exclude: ["README.markdown"] lsi: false safe: true @@ -18,3 +18,4 @@ paginate_path: "news/:num/" collections: articles: output: true + permalink: "/articles/:title/" -- cgit v1.2.3