25 lines
469 B
HTML
25 lines
469 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>{{ title }} - HabitTracker</title>
|
|
<style>
|
|
nav a {
|
|
color: #d64161;
|
|
font-size: 3em;
|
|
margin-left: 50px;
|
|
text-decoration: none;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<nav>
|
|
<a href="#">Test Navbar</a>
|
|
<a href="#">Meine Stats...</a>
|
|
</nav>
|
|
<hr>
|
|
<div class="content">
|
|
{% block content %} {% endblock %}
|
|
</div>
|
|
</body>
|
|
</html> |