index.html.twig 584 B

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