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