123456789101112131415161718192021222324252627282930 |
- {% extends 'base.html.twig' %}
- {% block title %}Le blog de Benj{% endblock %}
- {% block body %}
- <div>
- <h1>Opinions sur le réel</h1>
- Le blog de benj
- <h2>Derniers articles</h2>
- <section id="section-articles">
- {% for article in articles %}
- <article>
- <h2>{{ article.title}}</h2>
- <div class="article-by">
- {{ article.author }}, le {{ article.publicationDate | date('d-m-Y')}}
- </div>
- <div class="contenu">
- {{ article.content | raw }}
- </div>
- </article>
- {% else %}
- <p class="remarque">Rien pour le moment</p>
- {% endfor %}
- </section>
- </div>
- {% endblock %}
|