updated with new param separator

This commit is contained in:
Andy Miller 2015-02-18 16:14:33 -07:00
parent c0eafa9359
commit ea2b5d7c23
2 changed files with 2 additions and 2 deletions

View File

@ -34,7 +34,7 @@
<ul class="tags">
<i class="fa fa-tag"></i>
{% for tag in page.taxonomy.tag %}
<li><a href="{{ base_url }}/tag:{{ tag }}">{{ tag }}</a></li>
<li><a href="{{ base_url }}/tag{{ config.system.param_sep }}{{ tag }}">{{ tag }}</a></li>
{% endfor %}
</ul>
{% endif %}

View File

@ -5,7 +5,7 @@
<ul class="archives">
{% for tax,value in taxlist[taxonomy] %}
<li>
<a href="{{ base_url }}/tag:{{ tax|e('url') }}">{{ tax }} <span>({{ tax|length }})</span></a>
<a href="{{ base_url }}/tag{{ config.system.param_sep }}{{ tax|e('url') }}">{{ tax }} <span>({{ tax|length }})</span></a>
</li>
{% endfor %}
</ul>