20 lines
576 B
Twig
Raw Normal View History

2019-04-02 19:54:29 +02:00
{% set options = { items: {'@page.children': '/agenda'}, 'limit': 3, 'order': {'by': 'date', 'dir': 'desc'} } %}
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-04-03 15:29:46 +02:00
{% for p in page.collection(options)%}
2019-05-14 19:59:47 +02:00
<div class="side-agenda">
<a href="{{p.url}}">
{% include 'partials/blog/date.html.twig' with {page: p } %}
<{{h3}}>{{p.title}}</{{h3}}>
2019-05-09 00:26:27 +02:00
{{p.summary(70)}}
2019-05-14 19:59:47 +02:00
</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>