diff options
| author | Frederick Muriuki Muriithi | 2025-07-17 12:23:33 -0500 |
|---|---|---|
| committer | Frederick Muriuki Muriithi | 2025-07-17 12:24:58 -0500 |
| commit | ecf1a9a1798db490ff49945eaa73c8e4c090d1a5 (patch) | |
| tree | 4ad661a8e0a8f21ce53cb8b5cbfec8939be89789 /gn_auth/templates | |
| parent | 0e6a67bca38e0339af042554ed9b85a93ca39eee (diff) | |
| download | gn-auth-ecf1a9a1798db490ff49945eaa73c8e4c090d1a5.tar.gz | |
Decouple gn-auth from production (https://genenetwork.org).
Copy over files from GN2 for a quick decoupling of gn-auth from the production system.
Diffstat (limited to 'gn_auth/templates')
| -rw-r--r-- | gn_auth/templates/base.html | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/gn_auth/templates/base.html b/gn_auth/templates/base.html index c90ac9b..d80096d 100644 --- a/gn_auth/templates/base.html +++ b/gn_auth/templates/base.html @@ -8,21 +8,21 @@ <title>Authorization {%block title%}{%endblock%}</title> <link rel="stylesheet" type="text/css" - href="https://genenetwork.org/static/new/css/bootstrap-custom.css" /> + href="{{url_for('static', filename='css/bootstrap-custom.css')}}" /> <link rel="stylesheet" type="text/css" - href="https://genenetwork.org/static/new/css/non-responsive.css" /> + href="{{url_for('static', filename='css/non-responsive.css')}}" /> <link rel="stylesheet" type="text/css" href="{{url_for('static', filename='css/styles.css')}}" /> <link rel="stylesheet" type="text/css" - href="https://genenetwork.org/static/new/css/docs.css" /> + href="{{url_for('static', filename='css/docs.css')}}" /> <link rel="stylesheet" type="text/css" - href="https://genenetwork.org/static/new/css/colorbox.css" /> + href="{{url_for('static', filename='css/colorbox.css')}}" /> <link rel="stylesheet" type="text/css" - href="https://genenetwork.org/static/new/css/parsley.css" /> + href="{{url_for('static', filename='css/parsley.css')}}" /> <link rel="stylesheet" type="text/css" - href="https://genenetwork.org/static/new/css/broken_links.css" /> + href="{{url_for('static', filename='css/broken_links.css')}}" /> <link rel="stylesheet" - href="https://genenetwork.org/static/new/css/autocomplete.css" /> + href="{{url_for('static', filename='css/autocomplete.css')}}" /> {%block css%}{%endblock%} </head> |
