index.html.twig 974 B

1234567891011121314151617181920212223242526272829303132333435
  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>
  13. <div class="titre-article">
  14. <h1>{{ article.title}}</h1>
  15. <p class="article-by">{{ article.publicationDate | format_date('long')}} - {{ article.author }}</p>
  16. </div>
  17. </header>
  18. <section class="contenu">
  19. {{ article.content | markdown }}
  20. </section>
  21. <footer></footer>
  22. </article>
  23. </div>
  24. <a href="{{ path('app_index')}}">Retour au blog</a>
  25. {% if is_granted('edit', article) %}
  26. <a class="btn btn-blue" href="{{ path('app_article_edit', {'id': article.id}) }}">Modifier cet article</a>
  27. {% endif %}
  28. {% endblock %}