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.html15
1 files changed, 10 insertions, 5 deletions
diff --git a/jthanio/templates/base.html b/jthanio/templates/base.html
index 694f86c..0a8a7a9 100644
--- a/jthanio/templates/base.html
+++ b/jthanio/templates/base.html
@@ -33,14 +33,19 @@
{% block content %}{% endblock %}
+ {% block extra_js %}
+ {# Override this in templates to add extra javascript #}
+ {% endblock %}
+
+ <footer class="footer">
+ <div class="text-center bg-dark">
+ <span class="text-muted">Copyright &copy; jthan.io {% now "Y" %}</span>
+ </div>
+ </footer>
+
{# 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 #}
- {% endblock %}
</body>
</html>