oops ... undid base delete from prior commit

This commit is contained in:
Corban-Lee Jones 2024-06-12 23:54:32 +01:00
parent 800ecee7da
commit 7cd1c9bdce

View File

@ -0,0 +1,57 @@
{% load static %}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="Corban-Lee">
<meta name="description" content="Python RSS Discord Bot Dashboard">
<meta name="keywords" content="Discord, Python, RSS, Feed, News">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>
PYRSS{% block title %}{% endblock %}
</title>
<link rel="apple-touch-icon" href="{% static 'images/favicon/apple-touch-icon.png' %}">
<link rel="icon" sizes="16x16" href="{% static 'images/favicon/favicon-16x16.png' %}">
<link rel="icon" sizes="32x32" href="{% static 'images/favicon/favicon-32x32.png' %}">
<link rel="icon" href="{% static 'images/favicon/favicon.ico' %}">
<link type="text/css" rel="stylesheet" href="{% static '/css/bootstrap.css' %}" />
<link type="text/css" rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
<link type="text/css" rel="stylesheet" href="{% static '/css/colours.css' %}" />
<link type="text/css" rel="stylesheet" href="{% static '/css/toasts.css' %}" />
<link type="text/css" rel="stylesheet" href="https://cdn.datatables.net/2.0.5/css/dataTables.dataTables.css">
<link type="text/css" rel="stylesheet" href="https://cdn.datatables.net/select/2.0.1/css/select.dataTables.min.css">
<link type="text/css" rel="stylesheet" href="{% static '/css/select2.min.css' %}">
<link type="text/css" rel="stylesheet" href="{% static '/css/select2-bootstrap.min.css' %}">
{% block stylesheets %}{% endblock stylesheets %}
</head>
<body data-bs-theme="light" class="bg-body vh-100">
<div class="h-100 d-flex flex-column align-items-stretch flex-nowrap">
{% include 'includes/navbar.html' %}
{% block content %}{% endblock content %}
{% include 'includes/footer.html' %}
</div>
{% include 'includes/toasts.html' %}
<script>
const CSRF_MiddlewareToken = "{{ csrf_token }}";
const currentUserId = "{{ request.user.id }}";
</script>
<script src="{% static '/js/jquery-3.6.0.min.js' %}"></script>
<script src="https://cdn.datatables.net/2.0.5/js/dataTables.min.js"></script>
<script src="https://cdn.datatables.net/select/2.0.1/js/dataTables.select.min.js"></script>
<script src="{% static '/js/bootstrap.bundle.min.js' %}"></script>
<script src="{% static '/js/select2.min.js' %}"></script>
<script src="{% static '/js/toasts.js' %}"></script>
<script src="{% static '/js/base.js' %%}"></script>
{% block javascript %}{% endblock javascript %}
</body>
</html>