From 01efd71022b3e2a69d75f389878fb07daf996cf0 Mon Sep 17 00:00:00 2001 From: Roberto Hueso Gómez Date: Mon, 31 Aug 2020 11:57:16 +0200 Subject: Add frontend basic structure This adds base.html and nav.html templates as well as its dependencies on Bootstrap and jQuery. --- ogcp/templates/base.html | 19 +++++++++++++++++++ ogcp/templates/nav.html | 17 +++++++++++++++++ 2 files changed, 36 insertions(+) create mode 100644 ogcp/templates/base.html create mode 100644 ogcp/templates/nav.html (limited to 'ogcp/templates') diff --git a/ogcp/templates/base.html b/ogcp/templates/base.html new file mode 100644 index 0000000..21389a9 --- /dev/null +++ b/ogcp/templates/base.html @@ -0,0 +1,19 @@ + + + + {% block head %} + + + + {% block title %}{% endblock %} - OpenGnsys + {% endblock %} + + + {% include 'nav.html' %} + {% block nav %}{% endblock %} +
{% block content %}{% endblock %}
+ + + diff --git a/ogcp/templates/nav.html b/ogcp/templates/nav.html new file mode 100644 index 0000000..5147a37 --- /dev/null +++ b/ogcp/templates/nav.html @@ -0,0 +1,17 @@ + -- cgit v1.2.3-18-g5258