You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
455 B
14 lines
455 B
7 years ago
|
<ul class="archives">
|
||
|
|
||
|
{% for month,items in archives_data %}
|
||
|
<li>
|
||
|
<a href="{{ base_url }}/{{ config.plugins.archives.taxonomy_names.month }}{{ config.system.param_sep }}{{ month|date('M_Y')|lower|e('url') }}">
|
||
|
{% if archives_show_count %}
|
||
|
<span class="label label-rounded label-primary">{{ items|length }}</span>
|
||
|
{% endif %}
|
||
|
<span class="archive_date">{{ month }}</span>
|
||
|
</a>
|
||
|
</li>
|
||
|
{% endfor %}
|
||
|
</ul>
|