diff options
author | Alexander Kabui | 2024-02-21 22:15:39 +0300 |
---|---|---|
committer | GitHub | 2024-02-21 22:15:39 +0300 |
commit | 9de0898d95c2942c468e21f9c859adb138f80820 (patch) | |
tree | d7d5534b0d95d4cd5067f76707de5da57bd9dd85 /gn2/wqflask/templates/index_page.html | |
parent | d41e2561297f31824cdf241a617e3ce6bada6ef5 (diff) | |
parent | 847eb20e807ba7a33055917c81be867b8522fb76 (diff) | |
download | genenetwork2-9de0898d95c2942c468e21f9c859adb138f80820.tar.gz |
Merge pull request #834 from genenetwork/chores/replace-js-external-links
Replacing JS External Links with Guix Packages
Diffstat (limited to 'gn2/wqflask/templates/index_page.html')
-rwxr-xr-x | gn2/wqflask/templates/index_page.html | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/gn2/wqflask/templates/index_page.html b/gn2/wqflask/templates/index_page.html index a245b7f3..eee4bd80 100755 --- a/gn2/wqflask/templates/index_page.html +++ b/gn2/wqflask/templates/index_page.html @@ -2,18 +2,22 @@ {% block title %}GeneNetwork{% endblock %} {% block css %} <!-- UIkit CSS --> -<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/uikit@3.7.4/dist/css/uikit.min.css" /> +<link rel="stylesheet" type="text/css" href="{{ url_for('css', filename='uikit/css/uikit.min.css') }}"/> + <link rel="stylesheet" href="/static/new/css/index_page.css" /> <link rel="stylesheet" href="/static/new/css/autocomplete.css"/> <!-- UIkit JS --> -<script src="https://cdn.jsdelivr.net/npm/uikit@3.7.4/dist/js/uikit.min.js"></script> -<script src="https://cdn.jsdelivr.net/npm/uikit@3.7.4/dist/js/uikit-icons.min.js"></script> -<script type="module" src="https://esm.sh/emfed"></script> -<link rel="stylesheet" type="text/css" - href="https://cdn.jsdelivr.net/gh/sampsyo/emfed@1/toots.css"> +<script language="javascript" type="text/javascript" src="{{ url_for('js', filename='uikit/js/uikit.min.js') }}"></script> + +<script language="javascript" type="text/javascript" src="{{ url_for('js', filename='uikit/js/uikit-icons.min.js') }}"></script> +<!--locally built emfed package see source file:https://github.com/sampsyo/emfed --> +<script type="module" src="static/new/javascript/emfed.bundle.js"></script> +<link rel="stylesheet" type="text/css" + href="static/new/css/toots.css"> <style TYPE="text/css"> + p.interact { display: none; } |