Files
qgreper/templates/base.html
David Hoppenbrouwers d72fd14c92 Basics to view threads
2022-10-07 13:23:19 +02:00

14 lines
208 B
HTML

<!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>