29 lines
853 B
Twig
Raw Permalink Normal View History

2019-06-08 18:00:55 +02:00
{% set options = { items: {'@page.children': '/agenda'} } %}
2019-05-14 19:59:47 +02:00
{% set h2 = h2 ?: 'h2' %}
{% set h3 = h3 ?: 'h3' %}
2019-04-02 19:54:29 +02:00
<div class="sidebar">
2019-05-14 19:59:47 +02:00
<{{h2}}>À venir</{{h2}}>
2019-06-08 18:00:55 +02:00
{% set this_year = "now"|date('Y') %}
{% set this_month = "now"|date('M') %}
{% set this_day = "now"|date('d') %}
2019-12-20 11:30:26 +01:00
{% set next_year = "+1 year"|date('Y')%}
2021-06-12 14:36:11 +02:00
{% for p in page.collection(options).dateRange( this_day ~ this_month ~ this_year, '12/31/' ~ next_year).slice(0, 3).order('date', 'asc') %}
2019-06-08 18:00:55 +02:00
<div class="side-agenda">
<a href="{{p.url}}">
2019-12-20 11:30:26 +01:00
<div class="date">
{% include 'partials/blog/date.html.twig' with {page: p} %}
</div>
2019-06-08 18:00:55 +02:00
<{{h3}}>{{p.title}}</{{h3}}>
{{p.summary(70)}}
</a>
</div>
2019-04-03 15:29:46 +02:00
{% endfor %}
<div class="side-all-agenda">
<a href="/agenda">voir tout l'agenda</a>
2019-04-02 19:54:29 +02:00
</div>
</div>