23 lines
691 B
Twig
23 lines
691 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 %}
|
|
{% block importmap %}{{ importmap('app') }}{% endblock %}
|
|
{% endblock %}
|
|
</body>
|
|
</html>
|