From 3fff4472e62f9e0243942a8bfb3b1037281c6605 Mon Sep 17 00:00:00 2001 From: Joao Fernandes Date: Tue, 17 Jan 2017 12:53:08 -0800 Subject: [PATCH] Updates allpagelinks.md to use full paths (#1143) --- allpagelinks.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/allpagelinks.md b/allpagelinks.md index 038f96fcb7b..31962b4d686 100644 --- a/allpagelinks.md +++ b/allpagelinks.md @@ -3,7 +3,7 @@ title: All Page Links hide_from_sitemap: true --- -{% assign sorted_pages = site.pages | sort:"path" %} -{% for thispage in sorted_pages %} -- [{{thispage.path}}]({{thispage.path}}) - {{ thispage.title }} +{% assign pages = site.pages | sort:"path" %} +{% for page in pages %} +- [{{page.url}}]({{page.url}}) - {{ page.title }} {% endfor %}