From 7cd1c9bdceda6fc1632de6c075743afdf82ffbc6 Mon Sep 17 00:00:00 2001 From: Corban-Lee Jones Date: Wed, 12 Jun 2024 23:54:32 +0100 Subject: [PATCH] oops ... undid base delete from prior commit --- apps/templates/layouts/base.html | 57 ++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 apps/templates/layouts/base.html diff --git a/apps/templates/layouts/base.html b/apps/templates/layouts/base.html new file mode 100644 index 0000000..782c36e --- /dev/null +++ b/apps/templates/layouts/base.html @@ -0,0 +1,57 @@ +{% load static %} + + + + + + + + + + + + PYRSS{% block title %}{% endblock %} + + + + + + + + + + + + + + + + + {% block stylesheets %}{% endblock stylesheets %} + + + +
+ {% include 'includes/navbar.html' %} + {% block content %}{% endblock content %} + {% include 'includes/footer.html' %} +
+ + {% include 'includes/toasts.html' %} + + + + + + + + + + + + {% block javascript %}{% endblock javascript %} + + \ No newline at end of file