index.html.twig 925 B

123456789101112131415161718192021222324252627282930313233
  1. {% extends 'base.html.twig' %}
  2. {% block title %}{{ parent() }} - {{article.title}}{% endblock %}
  3. {% block body %}
  4. <a href="{{ path('app_index')}}">Retour au blog</a>
  5. {% if not workflow_has_marked_place(article, 'published') %}
  6. <div class="unpublished">
  7. {{ article.state | trans }}
  8. </div>
  9. {% endif %}
  10. <div>
  11. <article class="article">
  12. <header class="titre-article">
  13. <h1>{{ article.title}}</h1>
  14. <p class="article-by">{{ article.publicationDate | format_date('long')}} - {{ article.author }}</p>
  15. </header>
  16. <section class="contenu">
  17. {{ article.content | markdown }}
  18. </section>
  19. <footer></footer>
  20. </article>
  21. </div>
  22. <a href="{{ path('app_index')}}">Retour au blog</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. {% endblock %}