Updates allpagelinks.md to use full paths (#1143)

This commit is contained in:
Joao Fernandes 2017-01-17 12:53:08 -08:00 committed by John Mulhausen
parent 50d3263d2d
commit 3fff4472e6
1 changed files with 3 additions and 3 deletions

View File

@ -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 %}