Files
old-saburly-wagtail-web/templates/base.html

29 lines
1.1 KiB
HTML
Raw Normal View History

2024-09-10 20:21:33 +02:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>{% block title %}Saburly - {{ self.title }}{% endblock %}</title>
2024-09-15 18:36:35 +02:00
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css" integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous"/>
2024-09-10 20:21:33 +02:00
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet">
{% load static %}
<link rel="stylesheet" href="{% static './css/style.css' %}">
<link rel="shortcut icon" type="image/png" href="{% static './images/favicon32.png' %}">
{% block extra_head %}{% endblock %}
</head>
2024-09-12 21:36:10 +02:00
<body class="font-sans">
2024-09-10 20:21:33 +02:00
<main class="side-panel panel">
{% include 'header.html' %}
2024-09-13 00:53:51 +02:00
{% include 'side_menu.html'%}
2024-09-10 20:21:33 +02:00
<div class="content">
{% block content %}
{% endblock %}
</div>
{% include 'footer.html' %}
</main>
2024-09-15 18:36:35 +02:00
<script src="{%static './js/index.js'%}"></script>
2024-09-10 20:21:33 +02:00
</body>