diff options
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 %} |