{% extends "layout.twig" %}
{% block title %}
{% if post is defined and post is not null and post.id > 0 %}
Éditer l'article
{% else %}
Créer un article
{% endif %}
{% endblock %}
{% block content %}
{% if post is defined and post is not null and post.id > 0 %}
Éditer l'article
{% else %}
Créer un article
{% endif %}
{# Formulaire identifié pour le script JavaScript #}
{% if post is defined and post is not null and post.id > 0 %}
Créé le : {{ post.createdAt|date("d/m/Y à H:i") }}
Modifié le : {{ post.updatedAt|date("d/m/Y à H:i") }}
{% endif %}
{% endblock %}