summaryrefslogtreecommitdiff
path: root/jthanio/templates/base.html
diff options
context:
space:
mode:
Diffstat (limited to 'jthanio/templates/base.html')
-rw-r--r--jthanio/templates/base.html7
1 files changed, 7 insertions, 0 deletions
diff --git a/jthanio/templates/base.html b/jthanio/templates/base.html
index 82a3fe8..f288bf3 100644
--- a/jthanio/templates/base.html
+++ b/jthanio/templates/base.html
@@ -19,11 +19,15 @@
{# Global stylesheets #}
<link rel="stylesheet" type="text/css" href="{% static 'css/jthanio.css' %}">
+ <link rel="stylesheet" type="text/css" href="{% static 'css/bootstrap.css' %}">
+
{% block extra_css %}
{# Override this in templates to add extra stylesheets #}
{% endblock %}
</head>
+
+ {% include "navigation.html" %}
<body class="{% block body_class %}{% endblock %}">
{% wagtailuserbar %}
@@ -32,6 +36,9 @@
{# Global javascript #}
<script type="text/javascript" src="{% static 'js/jthanio.js' %}"></script>
+ <script type="text/javascript" src="{% static 'js/bootstrap.js' %}"></script>
+ <script type="text/javascript" src="{% static 'js/jquery-3.4.1.min.js' %}"></script>
+
{% block extra_js %}
{# Override this in templates to add extra javascript #}