sidebar.html.twig 763 B

1234567891011121314151617181920212223242526
  1. {% set options = { items: {'@page.children': '/agenda'} } %}
  2. {% set h2 = h2 ?: 'h2' %}
  3. {% set h3 = h3 ?: 'h3' %}
  4. <div class="sidebar">
  5. <{{h2}}>À venir</{{h2}}>
  6. {% set this_year = "now"|date('Y') %}
  7. {% set this_month = "now"|date('M') %}
  8. {% set this_day = "now"|date('d') %}
  9. {% for p in page.collection(options).dateRange( this_day ~ this_month ~ this_year, '12/31/' ~ this_year).slice(0, 3).order('date', 'asc') %}
  10. <div class="side-agenda">
  11. <a href="{{p.url}}">
  12. {% include 'partials/blog/date.html.twig' with {page: p} %}
  13. <{{h3}}>{{p.title}}</{{h3}}>
  14. {{p.summary(70)}}
  15. </a>
  16. </div>
  17. {% endfor %}
  18. <div class="side-all-agenda">
  19. <a href="/agenda">voir tout l'agenda</a>
  20. </div>
  21. </div>