Docfile's picture
Update app/templates/texte.html
b645b5a verified
raw
history blame
251 Bytes
{% extends "base.html" %}
{% block content %}
<div class="container">
<h1>{{ texte.titre }}</h1>
<p class="author">
Auteur : Admin
</p>
<div>
{{ texte.contenu|safe }}
</div>
</div>
{% endblock %}