matekasse/Website/templates/base.html

30 lines
883 B
HTML
Raw Normal View History

2023-07-28 23:30:45 +02:00
<!DOCTYPE html>
<html lang="en">
2024-02-21 22:02:07 +01:00
<head>
<title>{% block title %}{% endblock %}</title>
2024-02-22 18:31:19 +01:00
<script src="/socket.io.js"
2024-02-21 22:02:07 +01:00
integrity="sha512-q/dWJ3kcmjBLU4Qc47E4A9kTB4m3wuTY7vkFJDTZKjTs8jhyGQnaUrxa0Ytd0ssMZhbNua9hE+E7Qv1j+DyZwA=="
crossorigin="anonymous"
></script>
2024-02-22 18:31:19 +01:00
<link rel="stylesheet" href="/new.css">
2024-09-09 10:12:24 +02:00
<link rel="prefetch" href="/ka-ching.wav" />
2024-02-22 18:31:19 +01:00
<link rel="shortcut icon" type="Logo/png" href="/ccc_logo.png"/>
2024-02-21 22:02:07 +01: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 17:24:44 +01:00
| <a href="/transactionlist">transactionlist</a>
2024-11-13 20:10:32 +01:00
| <a href="/transfare">transfare<font face="emoji">🎺⚧</font></a>
2024-02-21 22:02:07 +01:00
</p>
</nav>
<hr>
<div class="conntent">
{% block content %} {% endblock %}
</div>
</body>
2024-02-25 17:24:44 +01:00
</html>