iwakuweb/templates/base.html.tera
hexlocation 855521e4e5
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
feat: add my website and merry christmas
2024-12-24 19:37:02 +01:00

26 lines
782 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>
<h3 style="text-align: center;color: red;margin-bottom: 0;margin-top: 10px;">🎄 merry christmas!! <3 </h3>
<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>