Files
loginween/templates/base.jinja2
2025-11-01 18:13:09 +01:00

78 lines
3.9 KiB
Django/Jinja

<!DOCTYPE html>
<html lang="en" data-bs-theme="dark">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-sRIl4kxILFvY47J16cr9ZwB07vP4J8+LH7qKQnuqkuIAvNWLzeN8tE5YBujZqJLB" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css2?family=New Rocker&display=swap" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/js/bootstrap.bundle.min.js" integrity="sha384-FKyoEForCGlyvwx9Hj09JcYn3nv7wiPVlz7YYwJrWVcXK/BmnVDxM+D2scQbITxI" crossorigin="anonymous"></script>
<script src="https://unpkg.com/kaplay@3001.0.12/dist/kaplay.js"></script>
<script src="/static/js/pumpkin.js"></script>
<title>{% block title %} {% endblock %}</title>
<style>
.spider-web-1 {
position: fixed;
top: 0;
right: 0;
width: 100px;
height: 100px;
opacity: 0.3;
pointer-events: none;
z-index: 1;
}
.spider-web-2 {
position: fixed;
left: 0;
bottom: 0;
width: 100px;
height: 100px;
opacity: 0.3;
pointer-events: none;
z-index: 1;
}
* {
font-family: 'New Rocker', cursive !important;
}
body {
background: linear-gradient(135deg, #0d0618 0%, #1a0b2e 50%, #2d1b4e 100%);
}
</style>
{% block head %} {% endblock %}
</head>
<body>
<nav class="navbar navbar-expand-lg bg-body-tertiary">
<div class="container-fluid">
<a class="navbar-brand" href="/" style="font-size: 2rem; font-family: 'New Rocker', cursive; color: orange;">🎃 LoginWeen</a>
<button class="navbar-toggler" type="button", data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse", id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
{% block nav %}
{% endblock %}
</ul>
</div>
</div>
</nav>
<svg class="spider-web-1" viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">
<path d="M100,10 L100,190 M10,100 L190,100 M30,30 L170,170 M170,30 L30,170" stroke="white" stroke-width="2" fill="none"/>
<circle cx="100" cy="100" r="20" stroke="white" stroke-width="2" fill="none"/>
<circle cx="100" cy="100" r="40" stroke="white" stroke-width="2" fill="none"/>
<circle cx="100" cy="100" r="60" stroke="white" stroke-width="2" fill="none"/>
<circle cx="100" cy="100" r="80" stroke="white" stroke-width="2" fill="none"/>
</svg>
<svg class="spider-web-2" viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">
<path d="M100,10 L100,190 M10,100 L190,100 M30,30 L170,170 M170,30 L30,170" stroke="white" stroke-width="2" fill="none"/>
<circle cx="100" cy="100" r="20" stroke="white" stroke-width="2" fill="none"/>
<circle cx="100" cy="100" r="40" stroke="white" stroke-width="2" fill="none"/>
<circle cx="100" cy="100" r="60" stroke="white" stroke-width="2" fill="none"/>
<circle cx="100" cy="100" r="80" stroke="white" stroke-width="2" fill="none"/>
</svg>
{% block body %}
{% endblock %}
</body>
</html>