summaryrefslogtreecommitdiff
path: root/_includes/helpers/pages_list.html
diff options
context:
space:
mode:
Diffstat (limited to '_includes/helpers/pages_list.html')
-rw-r--r--_includes/helpers/pages_list.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/_includes/helpers/pages_list.html b/_includes/helpers/pages_list.html
index 0e42820..0e9ba87 100644
--- a/_includes/helpers/pages_list.html
+++ b/_includes/helpers/pages_list.html
@@ -25,9 +25,9 @@ Usage:
{% if group == null or group == node.group %}
{% if page.url == node.url %}
- <li class="active"><a href="{{node.url}}" class="active">{{node.title}}</a></li>
+ <li class="active"><a href="{{ BASE_PATH }}{{node.url}}" class="active">{{node.title}}</a></li>
{% else %}
- <li><a href="{{node.url}}">{{node.title}}</a></li>
+ <li><a href="{{ BASE_PATH }}{{node.url}}">{{node.title}}</a></li>
{% endif %}
{% endif %}