diff options
author | Sean Smith <ssmith@iol.unh.edu> | 2021-04-06 15:18:06 -0400 |
---|---|---|
committer | Sean Smith <ssmith@iol.unh.edu> | 2021-05-03 11:40:07 -0400 |
commit | 8269a6743c14cab1ca4105651255e6f908ee195c (patch) | |
tree | 7eabea6597cb232114cd84ae3b9d91f8d1ab43bf /src/templates/base/layout.html | |
parent | f1456220fcc098cb0f5e9fc60124680ff8aba6af (diff) |
Analytics Board
Signed-off-by: Sean Smith <ssmith@iol.unh.edu>
Change-Id: Id942628ff04cd2f3808f8608ac45989360717f34
Diffstat (limited to 'src/templates/base/layout.html')
-rw-r--r-- | src/templates/base/layout.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/templates/base/layout.html b/src/templates/base/layout.html index edf9b6b..2132dc6 100644 --- a/src/templates/base/layout.html +++ b/src/templates/base/layout.html @@ -14,6 +14,9 @@ <title>OPNFV Laas {{ title }}</title> {% endblock head-title %} + <!-- jQuery --> + <script src="{% static "node_modules/jquery/dist/jquery.min.js" %}"></script> + <!-- Bootstrap Core CSS --> <link href="{% static "node_modules/bootstrap/dist/css/bootstrap.min.css" %}" rel="stylesheet"> @@ -27,9 +30,6 @@ <!-- Favicon --> <link rel="shortcut icon" href="{% static 'favicon.ico' %}"> - <!-- jQuery --> - <script src="{% static "node_modules/jquery/dist/jquery.min.js" %}"></script> - {% block extrahead %} {% endblock extrahead %} |