iwakuweb/templates/base.html.tera

26 lines
780 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="/people">people</a>
<a href="/abuse">report abuse</a>
</div>
<div id="content">{% block content %}{% endblock content %}</div>
</div>
</body>
</html>