2024-08-08 15:43:49 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html data-theme="light">
|
|
|
|
|
|
|
|
|
|
<head>
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
|
<title>
|
|
|
|
|
Boardgame Site
|
|
|
|
|
</title>
|
2024-08-11 10:06:27 +02:00
|
|
|
|
2024-08-10 22:07:47 +02:00
|
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='main.css') }}">
|
2024-08-08 15:43:49 +02:00
|
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
|
2024-08-11 10:06:27 +02:00
|
|
|
<link href="https://cdn.datatables.net/2.1.3/css/dataTables.bootstrap5.min.css" rel="stylesheet">
|
|
|
|
|
|
|
|
|
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js" defer></script>
|
|
|
|
|
<script src="https://cdn.datatables.net/2.1.3/js/dataTables.min.js" defer></script>
|
|
|
|
|
<script src="https://cdn.datatables.net/2.1.3/js/dataTables.bootstrap5.min.js" defer></script>
|
|
|
|
|
<script src="{{ url_for('static', filename='main.js') }}" defer></script>
|
|
|
|
|
|
2024-08-08 15:43:49 +02:00
|
|
|
</head>
|
|
|
|
|
|
2024-08-10 22:45:08 +02:00
|
|
|
{% block body %}
|
2024-08-08 15:43:49 +02:00
|
|
|
|
2024-08-10 22:45:08 +02:00
|
|
|
{% endblock body %}
|
2024-08-08 15:43:49 +02:00
|
|
|
|
|
|
|
|
</html>
|
2024-08-10 22:45:08 +02:00
|
|
|
|