mirror of
https://github.com/YunoHost/doc.git
synced 2024-09-03 20:06:26 +02:00
13 lines
508 B
Twig
13 lines
508 B
Twig
<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|date(config.plugins.archives.date_display_format) }} </span>
|
|
</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|