updated with new param separator
This commit is contained in:
parent
c0eafa9359
commit
ea2b5d7c23
2 changed files with 2 additions and 2 deletions
|
@ -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 %}
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue