Basics to view threads

This commit is contained in:
David Hoppenbrouwers
2022-10-07 13:18:19 +02:00
commit d72fd14c92
11 changed files with 247 additions and 0 deletions

13
templates/base.html Normal file
View File

@@ -0,0 +1,13 @@
<!doctype html>
<head>
<title>{{ title }}</title>
</head>
<body>
<nav>
<a href="{{ url_for('index') }}">Home</a>
</nav>
<h1>{{ title }}</h1>
<main>
{% block content %}{% endblock %}
</main>
</body>