mirror of
https://github.com/MarijnDoeve/TijdVoorDeTest.git
synced 2026-03-06 12:44:20 +01:00
This commit introduces a refactored EliminationFactory for better modularity, updates the elimination preparation process, and adds functionality to view eliminations. Backoffice templates and forms have been reorganized, minor translations were corrected, and additional assets like styles and flashes were included for enhanced user experience.
30 lines
786 B
Twig
30 lines
786 B
Twig
<!DOCTYPE html>
|
|
<html lang="nl" data-bs-theme="dark">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<script
|
|
src="https://js-de.sentry-cdn.com/30cf438bc708c97e6f45c127bed9af96.min.js"
|
|
crossorigin="anonymous"
|
|
></script>
|
|
<title>
|
|
{% block title %}Tijd voor de test{% endblock title %}
|
|
</title>
|
|
{% block stylesheets %}{% endblock %}
|
|
{% block javascripts %}{% block importmap %}{% endblock %}{% endblock %}
|
|
</head>
|
|
<body>
|
|
{% block nav %}
|
|
{% endblock nav %}
|
|
<main>
|
|
{% block main %}
|
|
<div class="container">
|
|
{{ include('flashes.html.twig') }}
|
|
{% block body %}
|
|
{% endblock body %}
|
|
</div>
|
|
{% endblock %}
|
|
</main>
|
|
</body>
|
|
</html>
|