Add templates & static files

This commit is contained in:
Nyymix 2024-12-28 14:14:21 +02:00
parent 1bcf7ceba3
commit 043449cf4f
8 changed files with 55 additions and 8 deletions

25
templates/base.html Normal file
View file

@ -0,0 +1,25 @@
<!DOCTYPE html>
<html lang="en">
<head>
{% load static %}
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Muistox CSS -->
<link href="{% static 'css/muistox.css' %}" rel="stylesheet">
<title>{% block title %} Gallery {% endblock %}</title>
</head>
<body>
<!-- Main -->
<main class="uk-align-center uk-container-large">
{% block content %} No Content {% endblock %}
</main>
<!-- Muistox JS -->
<script src="{% static 'js/muistox.js' %}" type="text/javascript"></script>
</body>
</html>