mirror of
https://github.com/MarijnDoeve/TijdVoorDeTest.git
synced 2026-07-05 15:10:16 +02:00
18a6090366
* Add Penalty Seconds on tests * Refactors and start of candidate answer relation * Add breadcrumbs and UI consistency updates across backoffice templates * Add breadcrumbs and UI consistency updates across backoffice templates * Add Dutch translations for email verification and security messages * Rector * Refactor for code consistency and type safety assertions across repositories and entities * Refactor candidate-related logic to optimize queries, improve template separation, and add "Answer Mapping" functionality. * Cleanup * Update Symfony * Add coderabbit config * Fixes from coderabbit
29 lines
707 B
Twig
29 lines
707 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 importmap %}{% 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>
|