iwakuweb/templates/base.html.tera
hexlocation 07c09dfd87
All checks were successful
ci/woodpecker/manual/woodpecker Pipeline was successful
i love feet
2024-11-30 20:32:20 +01:00

21 lines
625 B
Text

<!DOCTYPE html>
<html lang="en">
<head>
<title>{% block title %}{% endblock title %} - iwakura.rip</title>
<link rel="stylesheet" href="/assets/css/global.css">
</head>
<body>
<div id="top">
<h1 style="font-size: 50px;text-align:center;margin:0;">iwakura.rip</h1><br>
<div id="link-container">
<a href="/">home</a>
<a href="/services">services</a>
<a href="/guestbook">guestbook</a>
<a href="/members">members</a>
<a href="/abuse">report abuse</a>
</div>
<div id="content">{% block content %}{% endblock content %}</div>
</div>
</body>
</html>