Merge pull request #77 from robertboloc/gh-pages

Menu links from the banners page
This commit is contained in:
Phil Sturgeon
2012-07-11 01:32:34 -07:00

View File

@@ -35,7 +35,7 @@
{% for post in site.posts reversed %} {% for post in site.posts reversed %}
{% if post.isChild and lastIsChild != true %}<ul>{% endif %} {% if post.isChild and lastIsChild != true %}<ul>{% endif %}
{% if lastIsChild and post.isChild != 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 %} {% assign lastIsChild = post.isChild %}
{% endfor %} {% endfor %}
</ul> </ul>