hegresphere/templates/faq/new.html.twig
2024-11-21 17:04:56 +01:00

12 lines
234 B
Twig

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