20 lines
603 B
Twig
20 lines
603 B
Twig
<!DOCTYPE html>
|
|
<!--
|
|
Editorial by HTML5 UP
|
|
html5up.net | @ajlkn
|
|
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
|
-->
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
|
|
|
|
<title>{% block title %}Welcome!{% endblock %}</title>
|
|
{% block stylesheets %}{% endblock %}
|
|
</head>
|
|
<body class='is-preload' onload='setHeight()' onresize='setHeight()'>
|
|
{% block body %}{% endblock %}
|
|
{% block javascripts %}{% endblock %}
|
|
</body>
|
|
</html>
|