index.html.twig 741 B

123456789101112131415161718192021222324252627
  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. {% apply markdown_to_html %}
  11. {{ article.content }}
  12. {% endapply %}
  13. </section>
  14. <footer></footer>
  15. </article>
  16. </div>
  17. <a href="{{ path('app_index')}}">Retour au blog</a>
  18. {% if is_granted('edit', article) %}
  19. <a class="btn btn-blue" href="{{ path('app_article_edit', {'id': article.id}) }}">Modifier cet article</a>
  20. {% endif %}
  21. {% endblock %}