This commit is contained in:
lane
2026-04-12 17:48:41 +08:00
commit 83ec67e4e2
16 changed files with 382 additions and 0 deletions

18
templates/base.html Normal file
View File

@@ -0,0 +1,18 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset = "UTF-8">
<title>{% block title %}gupland{% endblock %}</title>
<link rel="stylesheet" href="/bundle.css">
</head>
<body>
<nav>
<div class="container">
<a href="https://git.gupland.xyz">git</a>
<a href="https://wiki.gupland.xyz">wiki</a>
</div>
</nav>
{% block content %}{% endblock %}
</body>
</html>