muistox/templates/base.html

25 lines
594 B
HTML
Raw Normal View History

2024-12-28 14:14:21 +02:00
<!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>