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

28 lines
763 B
HTML
Raw Normal View History

2023-07-28 21:30:45 +00:00
<!DOCTYPE html>
<html lang="en">
2024-02-21 21:02:07 +00:00
<head>
<title>{% block title %}{% endblock %}</title>
2024-02-22 17:31:19 +00:00
<script src="/socket.io.js"
2024-02-21 21:02:07 +00:00
integrity="sha512-q/dWJ3kcmjBLU4Qc47E4A9kTB4m3wuTY7vkFJDTZKjTs8jhyGQnaUrxa0Ytd0ssMZhbNua9hE+E7Qv1j+DyZwA=="
crossorigin="anonymous"
></script>
2024-02-22 17:31:19 +00:00
<link rel="stylesheet" href="/new.css">
<link rel="shortcut icon" type="Logo/png" href="/ccc_logo.png"/>
2024-02-21 21:02:07 +00:00
{% block customscript %}{% endblock %}
</head>
<body>
<nav>
<p><a href="/">index page</a>
| <a href="/list">user and tag list</a>
| <a href="/documentation">Documentation</a>
2024-02-25 16:24:44 +00:00
| <a href="/transactionlist">transactionlist</a>
2024-02-21 21:02:07 +00:00
</p>
</nav>
<hr>
<div class="conntent">
{% block content %} {% endblock %}
</div>
</body>
2024-02-25 16:24:44 +00:00
</html>