2024-09-26 17:08:30 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<title>{% block title %}Welcome!{% endblock %}</title>
|
2024-10-03 17:30:04 +02:00
|
|
|
<link rel="" href="">
|
2024-10-10 17:56:52 +02:00
|
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
|
|
<link href="https://fonts.googleapis.com/css2?family=Qwitcher+Grypen:wght@400;700&display=swap" rel="stylesheet">
|
2024-09-26 17:08:30 +02:00
|
|
|
{% block stylesheets %}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block javascripts %}
|
|
|
|
{% block importmap %}{{ importmap('app') }}{% endblock %}
|
|
|
|
{% endblock %}
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
{% block body %}{% endblock %}
|
|
|
|
</body>
|
|
|
|
</html>
|