blob: de6d8a1af0a5cd59225ab33286173317f3c73c08 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
{% load static %}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<link rel="icon" href="{% static 'icons/favicon.ico' %}" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,200..800;1,200..800&display=swap" rel="stylesheet"/>
<link rel="stylesheet" href="{% static 'css/main.css' %}" />
{% block css %} {% endblock %}
<title>Yugen</title>
</head>
<body class="bg-black text-white">
{% include "partials/navbar.html" %}
<main class="mx-auto">{% block content %} {% endblock %}</main>
<footer class="text-center text-sm py-4">© <script>document.write(new Date().getFullYear())</script> Yugen • Yugen is a private streaming service meant to be used by certain allowed users only. Users must be members of a specific Discord server to be able to access the site. All rights reserved.</footer>
</body>
{% block scripts %} {% endblock %}
</html>
|