Files
2026-05-28 12:09:28 +03:00

12 lines
240 B
Twig

{% extends 'admin_base.html.twig' %}
{% block title %}New Page{% endblock %}
{% block body %}
<h1>Create new Page</h1>
{{ include('page/_form.html.twig') }}
<a href="{{ path('page_index') }}">back to list</a>
{% endblock %}