agenda.twig 535 B

12345678910111213141516171819202122
  1. {% extends "base.twig" %}
  2. {% block content %}
  3. page agenda
  4. <section>
  5. <div>
  6. <article class="tease tease-{{post.post_type}}" id="tease-{{post.ID}}">
  7. {% block content %}
  8. <h2 class="h2"><a href="{{post.link}}">{{post.title}}</a></h2>
  9. <p>{{post.preview}}</p>
  10. {% if post.get_thumbnail %}
  11. <img src="{{post.thumbnail.src}}" />
  12. {% endif %}
  13. {% endblock %}
  14. </article>
  15. {% for item in posts %}
  16. {% include 'components/thumbnails/thumbnails.twig' %}
  17. {% endfor %}
  18. </div>
  19. </section>
  20. {% endblock %}