22 lines
No EOL
569 B
HTML
22 lines
No EOL
569 B
HTML
<!DOCTYPE html>
|
||
<html>
|
||
|
||
<head>
|
||
<meta charset="UTF-8" />
|
||
<link rel="icon" type="image/gif" href="/static/assets/gifs/pcgif.gif">
|
||
<title>Agahnim</title>
|
||
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=DotGothic16&family=VT323&display=swap">
|
||
<link rel="stylesheet" href="/static/style.css" />
|
||
<script src="/static/vendor/htmx.min.js"></script>
|
||
</head>
|
||
|
||
<body hx-boost="true" hx-target="#content">
|
||
{% include "partials/header.html" %}
|
||
|
||
<main id="content">
|
||
{% block content %}{% endblock %}
|
||
</main>
|
||
|
||
</body>
|
||
|
||
</html> |