diff options
Diffstat (limited to 'gn2/wqflask/templates/index_page.html')
-rwxr-xr-x | gn2/wqflask/templates/index_page.html | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/gn2/wqflask/templates/index_page.html b/gn2/wqflask/templates/index_page.html index d3af519b..7044e9e3 100755 --- a/gn2/wqflask/templates/index_page.html +++ b/gn2/wqflask/templates/index_page.html @@ -4,11 +4,13 @@ <link rel="stylesheet" type="text/css" href="{{ url_for('css', filename='uikit/css/uikit.min.css') }}" /> - - {% block css %} -<link rel="stylesheet" href="/static/new/css/index_page.css" /> -<link rel="stylesheet" type="text/css" href="static/new/css/toots.css"> +<link rel="stylesheet" + type="text/css" + href="{{ url_for('static', filename='/new/css/index_page.css') }}" /> +<link rel="stylesheet" + type="text/css" + href="{{ url_for('static', filename='/new/css/toots.css') }}" /> <style TYPE="text/css"> p.interact { display: none; } @@ -477,8 +479,11 @@ type="text/javascript"></script> {% block js %} <!--Note this is locally built emfed package see source file:https://github.com/sampsyo/emfed --> -<script type="module" src="static/new/javascript/emfed.bundle.js"></script> -<script src="/static/new/javascript/dataset_select_menu_orig.js"></script> + +<script src="{{ url_for('static', filename='/new/javascript/emfed.bundle.js') }}" + type="module"></script> +<script src="{{ url_for('static', filename='/new/javascript/dataset_select_menu_orig.js') }}" + type="text/javascript"></script> <script> $(document).on('submit', '#searchform', function(event){ |