theme, plugins und config für die Webseite der Baptisten Hohenacker https://baptisten-hohenacker.de
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.

7 lines
293 B

<ul class="list-group">
{% set month = "now"|date("m/d/Y") %}
{% for j in range(1, 12) %}
{% set month = month|date_modify('-1 month') %}
<li class="list-group-item"><a href="{{ base_url }}/month:{{ month|date('M_Y')|lower|e('url') }}">{{ month|date('F Y') }}</a></li>
{% endfor %}
</ul>