2019-12-11 15:14:56 +01:00
|
|
|
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
2019-12-16 19:20:43 +01:00
|
|
|
<title>{{ page_title|e('html') }}</title>
|
2019-12-11 15:14:56 +01:00
|
|
|
{% block stylesheets %}
|
|
|
|
<link href="{{ asset('/css/style.css') }}" type="text/css" rel="stylesheet" />
|
|
|
|
{% endblock %}
|
|
|
|
</head>
|
|
|
|
<body>
|
2019-12-16 19:20:43 +01:00
|
|
|
<h1>{{head_title|e('html')}} </h1>
|
2019-12-11 15:14:56 +01:00
|
|
|
{{ form_start(form) }}
|
|
|
|
{{ form_widget(form.content, {}) }}
|
|
|
|
{{ form_end(form) }}
|
|
|
|
</body>
|
|
|
|
</html>
|