43 lines
1.4 KiB
HTML
43 lines
1.4 KiB
HTML
{% load static %}
|
|
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
<title>
|
|
PYRSS{% block title %}{% endblock %}
|
|
</title>
|
|
|
|
<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' %}" />
|
|
|
|
{% block stylesheets %}{% endblock stylesheets %}
|
|
</head>
|
|
<body data-bs-theme="light">
|
|
|
|
<div class="h-100 d-flex flex-column align-items-stretch flex-nowrap">
|
|
{% include 'includes/navbar.html' %}
|
|
{% block content %}{% endblock content %}
|
|
</div>
|
|
|
|
|
|
|
|
{% comment %} {% include 'includes/footer.html' %} {% endcomment %}
|
|
|
|
{% 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="{% static '/js/bootstrap.bundle.min.js' %}"></script>
|
|
<script src="{% static '/js/base.js' %%}"></script>
|
|
|
|
{% block javascript %}{% endblock javascript %}
|
|
|
|
</body>
|
|
</html>
|