16 lines
474 B
Twig
16 lines
474 B
Twig
|
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
||
|
<title> {{page_title}}</title>
|
||
|
{% block stylesheets %}
|
||
|
<link href="{{ asset('/css/style.css') }}" type="text/css" rel="stylesheet" />
|
||
|
{% endblock %}
|
||
|
</head>
|
||
|
<body>
|
||
|
<h1>{{head_title}} </h1>
|
||
|
{{ form_start(form) }}
|
||
|
{{ form_widget(form.content, {}) }}
|
||
|
{{ form_end(form) }}
|
||
|
</body>
|
||
|
</html>
|