25 lines
1.0 KiB
HTML
Raw Normal View History

2024-01-09 17:52:13 +01:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
2024-01-09 20:36:53 +01:00
<meta name="viewport" content="width=device-width, initial-scale=1" >
2024-01-09 17:52:13 +01:00
<title>{{ title }} - HabitTracker</title>
2024-01-09 20:36:53 +01:00
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
2024-01-09 17:52:13 +01:00
</head>
<body>
<nav>
<a href="#">Test Navbar</a>
<a href="#">Meine Stats...</a>
</nav>
<hr>
<div class="content">
{% block content %} {% endblock %}
2024-01-09 20:36:53 +01:00
<!-- Bootstrap JS -->
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.8/dist/umd/popper.min.js" integrity="sha384-I7E8VVD/ismYTF4hNIPjVp/Zjvgyol6VFvRkX/vR+Vc4jQkC+hVqc2pM8ODewa9r" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.min.js" integrity="sha384-BBtl+eGJRgqQAUMxJ7pMwbEyER4l1g+O15P+16Ep7Q9Q+zqX6gSbd85u4mG4QzX+" crossorigin="anonymous"></script>
2024-01-09 17:52:13 +01:00
</div>
</body>
</html>