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