summaryrefslogtreecommitdiffstats
path: root/ogcp/templates/base.html
diff options
context:
space:
mode:
Diffstat (limited to 'ogcp/templates/base.html')
-rw-r--r--ogcp/templates/base.html19
1 files changed, 19 insertions, 0 deletions
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 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+ {% block head %}
+ <script src="{{ url_for('static', filename='js/jquery.min.js') }}"></script>
+ <link rel="stylesheet" href="{{ url_for('static', filename='css/bootstrap.min.css') }}" />
+ <script src="{{ url_for('static', filename='js/bootstrap.min.js') }}"></script>
+ <title>{% block title %}{% endblock %} - OpenGnsys</title>
+ {% endblock %}
+</head>
+<body>
+ {% include 'nav.html' %}
+ {% block nav %}{% endblock %}
+ <div id="content">{% block content %}{% endblock %}</div>
+ <div id="footer">
+ {% block footer %}{% endblock %}
+ </div>
+</body>
+</html>