mirror of
https://github.com/pmoreno-rodriguez/grav-theme-future2021.git
synced 2025-06-07 20:08:54 +00:00
13 lines
No EOL
485 B
Twig
Executable file
13 lines
No EOL
485 B
Twig
Executable file
<ul class="alt">
|
|
|
|
{% 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-circle">{{ items|length }}</span>
|
|
{% endif %}
|
|
<span class="archive_date">{{ month|date(config.plugins.archives.date_display_format) }} </span>
|
|
</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul> |