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">
|
<ul class="tags">
|
||||||
<i class="fa fa-tag"></i>
|
<i class="fa fa-tag"></i>
|
||||||
{% for tag in page.taxonomy.tag %}
|
{% 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 %}
|
{% endfor %}
|
||||||
</ul>
|
</ul>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<ul class="archives">
|
<ul class="archives">
|
||||||
{% for tax,value in taxlist[taxonomy] %}
|
{% for tax,value in taxlist[taxonomy] %}
|
||||||
<li>
|
<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>
|
</li>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</ul>
|
</ul>
|
||||||
|
|
Loading…
Reference in a new issue