index.html.twig 752 B

123456789101112131415161718192021222324252627282930
  1. {% extends 'base.html.twig' %}
  2. {% block title %}Le blog de Benj{% endblock %}
  3. {% block body %}
  4. <div>
  5. <h1>Opinions sur le réel</h1>
  6. Le blog de benj
  7. <h2>Derniers articles</h2>
  8. <section id="section-articles">
  9. {% for article in articles %}
  10. <article>
  11. <h2>{{ article.title}}</h2>
  12. <div class="article-by">
  13. {{ article.author }}, le {{ article.publicationDate | date('d-m-Y')}}
  14. </div>
  15. <div class="contenu">
  16. {{ article.content | raw }}
  17. </div>
  18. </article>
  19. {% else %}
  20. <p class="remarque">Rien pour le moment</p>
  21. {% endfor %}
  22. </section>
  23. </div>
  24. {% endblock %}