sidebar.html.twig 853 B

12345678910111213141516171819202122232425262728
  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. {% set next_year = "+1 year"|date('Y')%}
  10. {% for p in page.collection(options).dateRange( this_day ~ this_month ~ this_year, '12/31/' ~ next_year).slice(0, 3).order('date', 'asc') %}
  11. <div class="side-agenda">
  12. <a href="{{p.url}}">
  13. <div class="date">
  14. {% include 'partials/blog/date.html.twig' with {page: p} %}
  15. </div>
  16. <{{h3}}>{{p.title}}</{{h3}}>
  17. {{p.summary(70)}}
  18. </a>
  19. </div>
  20. {% endfor %}
  21. <div class="side-all-agenda">
  22. <a href="/agenda">voir tout l'agenda</a>
  23. </div>
  24. </div>