]> Raphaƫl G. Git Repositories - airbundle/blob - Resources/views/base.html.twig
New page schema
[airbundle] / Resources / views / base.html.twig
1 <!DOCTYPE html>
2 <html{% if locale is defined and locale %} lang="{{ locale }}"{% endif %}>
3 <head{% if facebook is defined and facebook and facebook['prefixes'] is defined and facebook['prefixes'] %} prefix="{{ facebook['prefixes']|map((value, key) => "#{key}: #{value}")|join(' ') }}"{% endif %}>
4 {% block metas %}<meta charset="UTF-8">{% endblock %}
5 <title>{% block title %}Welcome!{% endblock %}</title>
6 {% block stylesheets %}{% endblock %}
7 </head>
8 <body>
9 {% block body %}{% endblock %}
10 {% block javascripts %}{% endblock %}
11 </body>
12 </html>