index.html.twig 1.0 KB

1234567891011121314151617181920212223242526272829
  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. {% apply markdown_to_html %}
  11. {{ article.content }}
  12. {% endapply %}
  13. </div>
  14. </article>
  15. <a href="{{ path('app_view', {'id': article.id}) }}">Voir l'article</a>
  16. {% if is_granted('edit', article) %}
  17. <a class="btn btn-blue" href="{{ path('app_article_edit', {'id': article.id}) }}">Modifier cet article</a>
  18. {% endif %}
  19. <hr>
  20. {% else %}
  21. <p class="remarque">Rien pour le moment</p>
  22. {% endfor %}
  23. </section>
  24. </div>
  25. {% endblock %}