fixed menu links when viewing from the banners page

This commit is contained in:
Robert Boloc
2012-07-11 10:10:29 +02:00
parent d911031ec5
commit 5ac91bdb79

View File

@@ -35,7 +35,7 @@
{% for post in site.posts reversed %}
{% if post.isChild and lastIsChild != true %}<ul>{% endif %}
{% if lastIsChild and post.isChild != true %}</ul>{% endif %}
<li><a href="#{{ post.title | downcase | replace:' ','_' | replace:'(','' | replace:')','' | replace:'.','' | replace:'-','' }}">{{ post.title }}</a>
<li><a href="/#{{ post.title | downcase | replace:' ','_' | replace:'(','' | replace:')','' | replace:'.','' | replace:'-','' }}">{{ post.title }}</a>
{% assign lastIsChild = post.isChild %}
{% endfor %}
</ul>