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-11 15:17:18 +02:00
|
|
|
<link href="{{ url_for('static', filename='css/bootstrap/bootstrap.min.css') }}" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
|
|
|
|
|
<link href="{{ url_for('static', filename='css/datatables/datatables.min.css') }}" rel="stylesheet">
|
|
|
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/main.css') }}">
|
2024-08-11 10:06:27 +02:00
|
|
|
|
2024-08-11 15:17:18 +02:00
|
|
|
<script src="{{ url_for('static', filename='javascript/jquery/jquery-3.7.1.min.js') }}" defer></script>
|
|
|
|
|
<script src="{{ url_for('static', filename='javascript/datatables/datatables.min.js') }}" defer></script>
|
2024-08-11 23:04:30 +02:00
|
|
|
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
|
2024-08-11 15:17:18 +02:00
|
|
|
<script src="{{ url_for('static', filename='javascript/main.js') }}" defer></script>
|
2024-08-11 10:06:27 +02:00
|
|
|
|
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
|
|
|
|