FestinHegre/templates/plats/new.html.twig

12 lines
242 B
Twig

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