1
0
Fork 0
forked from anton/matekasse
matekasse/templates/base.html

17 lines
412 B
HTML
Raw Normal View History

2023-06-23 21:12:13 +00:00
<!DOCTYPE html>
<html lang="en">
2023-06-23 21:20:50 +00:00
<head>
<title>
{% block title %} {% endblock %} - FlaskApp
</title>
</head>
2023-06-23 21:12:13 +00:00
<body>
<nav>
<p><a href="/list">user and tag list</a> | <a href="/documentation">Documentation</a></p>
</nav>
2023-06-23 21:20:50 +00:00
<hr>
<div class="conntent">
{% block content %} {% endblock %}
</div>
2023-06-23 21:12:13 +00:00
</body>
</html>