fixing issue with links for tags, series, and top nav. Also commented out customMenu.html from topnav.html

This commit is contained in:
Tom Johnson
2015-08-18 12:02:13 -07:00
parent 005c38bbea
commit 77e651f476
8 changed files with 17 additions and 16 deletions

View File

@ -30,7 +30,7 @@ Getting started pages:
{% for page in sorted_pages %}
{% for tag in page.tags %}
{% if tag == "getting-started" %}
<li><a href="{{page.url}}">{{page.title}}</a></li>
<li><a href="{{page.url | replace: '/',''}}">{{page.title}}</a></li>
{% endif %}
{% endfor %}
{% endfor %}
@ -45,7 +45,7 @@ Getting started pages:
{% for page in sorted_pages %}
{% for tag in page.tags %}
{% if tag == "getting-started" %}
<li><a href="{{page.url}}">{{page.title}}</a></li>
<li><a href="{{page.url | replace: '/',''}}">{{page.title}}</a></li>
{% endif %}
{% endfor %}
{% endfor %}