index.html.twig 1.4 KB

123456789101112131415161718192021222324252627282930313233343536
  1. {% extends 'base.html.twig' %}
  2. {% block title %}{{ parent() }} - Blog{% endblock %}
  3. {% block body %}
  4. <div>
  5. <section id="section-articles">
  6. {% for article in articles %}
  7. <article class="article-preview">
  8. <header class="titre-article">
  9. <h1><a href="{{ path('app_view', {'slug': article.slug}) }}">{{ article.title}}</a></h1>
  10. <p class="article-by">{{ article.publicationDate | format_date('long') }} - {{ article.author }}</p>
  11. <p class="article-by">
  12. {% for tag in article.tags %}
  13. <span class="tag">{{ tag }}</span>
  14. {% if not loop.last %} {% endif %}
  15. {% endfor %}
  16. </p>
  17. </header>
  18. <section class="contenu">
  19. {{ article.content | markdown }}
  20. </section>
  21. </article>
  22. <a href="{{ path('app_view', {'slug': article.slug}) }}">Voir l'article</a>
  23. {% if is_granted('edit', article) %}
  24. <a class="btn btn-blue" href="{{ path('app_article_edit', {'id': article.id}) }}">Modifier cet article</a>
  25. {% endif %}
  26. <hr>
  27. {% else %}
  28. <p class="remarque">Rien pour le moment</p>
  29. {% endfor %}
  30. </section>
  31. </div>
  32. {% endblock %}