diff options
author | Frederick Muriuki Muriithi | 2023-07-03 11:20:34 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2023-07-03 11:20:34 +0300 |
commit | 14f073af864e7d9d94babe2bf094f3079331bb34 (patch) | |
tree | 72876281aa41bd391187e262e3044cdb1ea98934 /gn3/templates/base.html | |
parent | 424a515120478998592663725d2d1186d36304f4 (diff) | |
download | genenetwork3-14f073af864e7d9d94babe2bf094f3079331bb34.tar.gz |
Spruce up UI
Make UI somewhat consistent with the GN2 UI.
Diffstat (limited to 'gn3/templates/base.html')
-rw-r--r-- | gn3/templates/base.html | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/gn3/templates/base.html b/gn3/templates/base.html index c1070ed..db08545 100644 --- a/gn3/templates/base.html +++ b/gn3/templates/base.html @@ -7,11 +7,18 @@ <title>Genenetwork 3: {%block title%}{%endblock%}</title> + <link rel="stylesheet" type="text/css" + href="https://genenetwork.org/static/new/css/bootstrap-custom.css" /> + <link rel="stylesheet" type="text/css" href="/static/css/styles.css" /> {%block css%}{%endblock%} </head> <body> - {%block content%}{%endblock%} + <h1>Genenetwork3: {%block pagetitle%}{%endblock%}</h1> + + <div class="container"> + {%block content%}{%endblock%} + </div> {%block js%}{%endblock%} <body> </html> |