iwakuweb/templates/base.html.tera

23 lines
636 B
Text
Raw Normal View History

2024-10-05 00:48:55 +02:00
<!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>
<hr>
<div id="content">{% block content %}{% endblock content %}</div>
</div>
</body>
</html>