abiball/templates/base.html.twig
Jan-Marlon Leibl 7071e98ded
All checks were successful
build / build (pull_request) Successful in 4m37s
feat: add responsive design and improved styling to pages
2025-01-23 17:37:52 +01:00

20 lines
617 B
Twig

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Abiball-Tickets | {% block title %}{% endblock %}</title>
<link rel="icon" href="{{ asset('images/icon.png') }}">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
{% block stylesheets %}
<link rel="stylesheet" href="{{ asset('styles/app.css') }}">
{% endblock %}
{% block javascripts %}
{% block importmap %}{{ importmap('app') }}{% endblock %}
{% endblock %}
</head>
<body>
{% block body %}{% endblock %}
</body>
</html>