index.html.twig 778 B

1234567891011121314151617181920212223
  1. {% extends 'base.html.twig' %}
  2. {% block title %}Opinions sur le réel{% endblock %}
  3. {% block body %}
  4. <div>
  5. <section id="section-articles">
  6. {% for article in articles %}
  7. <article class="article-preview">
  8. <h2><a href="{{ path('app_view', {'id': article.id}) }}">{{ article.title}}</a><span class="article-by">{{ article.publicationDate | date('d-m-Y')}} {{ article.author }}</span></h2>
  9. <div class="contenu">
  10. {{ article.content | raw }}
  11. </div>
  12. </article>
  13. <a href="{{ path('app_view', {'id': article.id}) }}">Voir l'article</a>
  14. {% else %}
  15. <p class="remarque">Rien pour le moment</p>
  16. {% endfor %}
  17. </section>
  18. </div>
  19. {% endblock %}