diff options
author | Aaron LI <aaronly.me@outlook.com> | 2016-11-01 15:15:24 +0800 |
---|---|---|
committer | Aaron LI <aaronly.me@outlook.com> | 2016-11-01 15:15:24 +0800 |
commit | 2acfe26c97c203cf931044f480568028f215559c (patch) | |
tree | 2198ffb54d0826acddb60cf3e003f6fd7e7eea59 /fg21sim/webui/templates | |
parent | 17ab3601ae7354e078b5fec4ad71fbe9d4da0692 (diff) | |
download | fg21sim-2acfe26c97c203cf931044f480568028f215559c.tar.bz2 |
Serve jQuery locally (use jqyeru-3.1.1.js)
Diffstat (limited to 'fg21sim/webui/templates')
-rw-r--r-- | fg21sim/webui/templates/base.html | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fg21sim/webui/templates/base.html b/fg21sim/webui/templates/base.html index 51d8a94..35b55dd 100644 --- a/fg21sim/webui/templates/base.html +++ b/fg21sim/webui/templates/base.html @@ -15,6 +15,7 @@ <link rel="stylesheet" href="{{ static_url('css/normalize.css') }}" /> <link rel="stylesheet" href="{{ static_url('css/font-awesome.css') }}" /> <link rel="stylesheet" href="{{ static_url('css/milligram.css') }}" /> + <link rel="stylesheet" href="{{ static_url('css/fonts.css') }}" /> <link rel="stylesheet" href="{{ static_url('css/main.css') }}" /> {% block extra_css %}{% end %} {% end %} @@ -39,7 +40,7 @@ </div> {% block script %} - <script src="//code.jquery.com/jquery-3.1.1.min.js"></script> + <script src="{{ static_url('js/jquery-3.1.1.js') }}"></script> <script src="{{ static_url('js/main.js') }}"></script> {% block extra_script %}{% end %} {% end %} |