fixing issue with links for tags, series, and top nav. Also commented out customMenu.html from topnav.html
This commit is contained in:
@ -28,7 +28,7 @@
|
||||
{% elsif page.url == subcategory.url %}
|
||||
<li class="active"><a href="{{subcategory.url | replace: "/",""}}">{{subcategory.title}}</a></li>
|
||||
{% else %}
|
||||
<li><a href="{{subcategory.url}}">{{subcategory.title}}</a></li>
|
||||
<li><a href="{{subcategory.url | replace: "/",""}}">{{subcategory.title}}</a></li>
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
@ -49,9 +49,9 @@
|
||||
{% if subitem.external_url %}
|
||||
<li><a href="{{subitem.external_url}}" target="_blank">{{subitem.title}}</a></li>
|
||||
{% elsif page.url contains subitem.url %}
|
||||
<li class="dropdownActive"><a href="{{subitem.url}}">{{subitem.title}}</a></li>
|
||||
<li class="dropdownActive"><a href="{{subitem.url | replace: '/',''}}">{{subitem.title}}</a></li>
|
||||
{% else %}
|
||||
<li><a href="{{subitem.url}}">{{subitem.title}}</a></li>
|
||||
<li><a href="{{subitem.url | replace: "/",""}}">{{subitem.title}}</a></li>
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
@ -65,8 +65,8 @@
|
||||
|
||||
<!-- special insertion -->
|
||||
|
||||
{% include custom/doc/customMenu.html %}
|
||||
{% include feedback.html %}
|
||||
{% comment %} {% include custom/doc/customMenu.html %}{% endcomment %}
|
||||
{% include feedback.html %}
|
||||
|
||||
|
||||
<li>
|
||||
|
Reference in New Issue
Block a user