Templates

This commit is contained in:
2024-05-13 21:07:38 -04:00
parent 3374ec2691
commit 4b0d327ab4
10 changed files with 509 additions and 0 deletions

22
templates/base.html.twig Normal file
View File

@ -0,0 +1,22 @@
<!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>