index.html.twig 684 B

12345678910111213141516171819202122232425
  1. {% extends 'base.html.twig' %}
  2. {% block title %}{{article.title}}{% endblock %}
  3. {% block body %}
  4. <div>
  5. <article class="article">
  6. <header>
  7. <h2>{{ article.title}}<span class="article-by">{{ article.publicationDate | date('d-m-Y')}} {{ article.author }}</span></h2>
  8. </header>
  9. <section class="contenu">
  10. {{ article.content | markdown }}
  11. </section>
  12. <footer></footer>
  13. </article>
  14. </div>
  15. <a href="{{ path('app_index')}}">Retour au blog</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. {% endblock %}