Fixes #3836. Fix site template header menu iteration variables

This commit is contained in:
Günter Kits 2015-07-06 21:02:56 +03:00
parent 5bf5c36ce0
commit b9f8fc1715
1 changed files with 3 additions and 3 deletions

View File

@ -14,9 +14,9 @@
</a>
<div class="trigger">
{% for page in site.pages %}
{% if page.title %}
<a class="page-link" href="{{ page.url | prepend: site.baseurl }}">{{ page.title }}</a>
{% for my_page in site.pages %}
{% if my_page.title %}
<a class="page-link" href="{{ my_page.url | prepend: site.baseurl }}">{{ my_page.title }}</a>
{% endif %}
{% endfor %}
</div>