Files
herbarium/templates/post/new.html.twig
bastien ollier b7a750604a update form
2024-06-07 15:58:55 +02:00

12 lines
238 B
Twig

{% extends 'base.html.twig' %}
{% block title %}New Post{% endblock %}
{% block body %}
<h1>Create new Post</h1>
{{ include('post/_form.html.twig') }}
<a href="{{ path('app_post_index') }}">back to list</a>
{% endblock %}