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">
|
|
|
|
|
2024-09-09 08:12:24 +00:00
|
|
|
<link rel="prefetch" href="/ka-ching.wav" />
|
2024-02-22 17:31:19 +00:00
|
|
|
<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-11-13 19:10:32 +00:00
|
|
|
| <a href="/transfare">transfare<font face="emoji">🎺⚧</font></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>
|