boardgame_site_v2/templates/base.jinja

26 lines
1,005 B
Text
Raw Normal View History

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-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">
<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>
{% block body %}
2024-08-08 15:43:49 +02:00
{% endblock body %}
2024-08-08 15:43:49 +02:00
</html>