iwakuweb/templates/base.html.tera

27 lines
780 B
Text
Raw Normal View History

2024-10-04 22:48:55 +00:00
<!DOCTYPE html>
<html lang="en">
2024-10-04 22:48:55 +00:00
<head>
<title>{% block title %}{% endblock title %} - iwakura.rip</title>
<link rel="stylesheet" href="/assets/css/global.css">
</head>
2024-10-04 22:48:55 +00:00
<body>
<div id="top">
<h1 style="font-size: 50px;text-align:center;margin:0;">iwakura.rip</h1>
<h3 style="text-align: center;color: red;margin-bottom: 0;margin-top: 10px;">🎄 merry christmas!! <3 </h3>
<br>
2024-10-04 22:48:55 +00:00
<div id="link-container">
<a href="/">home</a>
<a href="/services">services</a>
<a href="/guestbook">guestbook</a>
2025-01-08 16:55:58 +00:00
<a href="/people">people</a>
<a href="/abuse">report abuse</a>
</div>
<div id="content">{% block content %}{% endblock content %}</div>
2024-10-04 22:48:55 +00:00
</div>
</body>
2024-10-04 22:48:55 +00:00
</html>