12 lines
448 B
Twig
12 lines
448 B
Twig
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="{{ master_charset|default('utf-8') }}">
|
|
{% if master_title is defined and master_title is not empty %}<title>{{ master_title }}</title>{% endif %}
|
|
{% block master_head %}{% endblock %}
|
|
{% if csrfp_available() %}<meta name="csrfp-token" content="{{ csrfp_token() }}">{% endif %}
|
|
</head>
|
|
<body>
|
|
{% block master_body %}{% endblock %}
|
|
</body>
|
|
</html>
|