16 lines
393 B
Twig
Executable File
16 lines
393 B
Twig
Executable File
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
{% if page is defined %}
|
|
<title>{pagetitle}</title>
|
|
<meta name="description" content="{pagemetadescription}">
|
|
{% endif %}
|
|
{{ outputHeadDeclarations() }}
|
|
</head>
|
|
<body>
|
|
{{ outputScripts('bodyOpen') }}
|
|
{% block content %}{% endblock %}
|
|
{{ outputScripts('bodyClose') }}
|
|
</body>
|
|
</html>
|