Skip to content

Commit

Permalink
Fix pages variable in navigation bar
Browse files Browse the repository at this point in the history
Fixes issue duilio#91, pages do not show in the nav. bar.
  • Loading branch information
boriel committed Mar 21, 2020
1 parent 62954c4 commit 1fb51d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/_includes/navigation.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<li><a href="{{ link }}">{{ title }}</a></li>
{% endfor %}
{% if DISPLAY_PAGES_ON_MENU %}
{% for page in PAGES %}
{% for page in pages %}
<li><a href="{{ SITEURL }}/{{ page.url }}">{{ page.title }}</a></li>
{% endfor %}
{% endif %}
Expand Down

0 comments on commit 1fb51d8

Please sign in to comment.