26 lines
No EOL
678 B
HTML
26 lines
No EOL
678 B
HTML
<!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">
|
|
<link rel="shortcut icon" type="image/png" href="{% static 'favicon.ico' %}" />
|
|
<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> |