index.html.twig 518 B

123456789101112131415161718192021
  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 | raw }}
  11. </section>
  12. <footer></footer>
  13. </article>
  14. </div>
  15. <a href="{{ path('app_index')}}">Retour au blog</a>
  16. {% endblock %}