MyComments/templates/domain/new.html.twig

12 lines
280 B
Twig

{% extends 'base.html.twig' %}
{% block title %}New Domain{% endblock %}
{% block body %}
<h1>Create new Domain</h1>
{{ include('domain/_form.html.twig') }}
<a href="{{ path('app_domain_index') }}" class="btn btn-secondary float-end m-1">Cancel</a>
{% endblock %}