29 lines
1.1 KiB
HTML
29 lines
1.1 KiB
HTML
<!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>
|
|
|
|
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css" integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous"/>
|
|
<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>
|
|
|
|
<body class="font-sans">
|
|
<main class="side-panel panel">
|
|
{% include 'header.html' %}
|
|
{% include 'side_menu.html'%}
|
|
<div class="content">
|
|
{% block content %}
|
|
{% endblock %}
|
|
</div>
|
|
{% include 'footer.html' %}
|
|
</main>
|
|
<script src="{%static './js/index.js'%}"></script>
|
|
</body>
|
|
|