]> Raphaƫl G. Git Repositories - blogbundle/blob - templates/form/contact.html.twig
New context layout
[blogbundle] / templates / form / contact.html.twig
1 {% extends '@RapsysBlog/_base.html.twig' %}
2 {% block content %}
3 <section class="form">
4 <header>
5 <h1><a href="{{ canonical }}">{{ title.page }}</a></h1>
6 <p>{{ description }}</p>
7 </header>
8 <section>
9 {{ form_start(contact) }}
10 {{ form_row(contact.subject) }}
11
12 {{ form_row(contact.name) }}
13
14 {{ form_row(contact.mail) }}
15
16 {{ form_row(contact.message) }}
17
18 {{ form_row(contact.captcha) }}
19
20 {{ form_row(contact.submit) }}
21
22 {# Render CSRF token etc .#}
23 <div style="display:none">{{ form_rest(contact) }}</div>
24 {{ form_end(contact) }}
25 </section>
26 </section>
27 {% endblock %}