diff options
author | Frederick Muriuki Muriithi | 2024-03-15 04:28:26 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2024-03-15 04:29:24 +0300 |
commit | a6ef95af5b6b072acdc02ba4db08c1bdda4c1f1a (patch) | |
tree | 9950b211af91945e9fcfe658a37dbde77ea25075 /gn3/templates/base.html | |
parent | dd0b29c07017ec398c447ca683dd4b4be18d73b7 (diff) | |
download | genenetwork3-a6ef95af5b6b072acdc02ba4db08c1bdda4c1f1a.tar.gz |
Remove ALL html templates from GeneNetwork3
GN3 provides an API to provide data, and needs no HTML UI.
Diffstat (limited to 'gn3/templates/base.html')
-rw-r--r-- | gn3/templates/base.html | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/gn3/templates/base.html b/gn3/templates/base.html deleted file mode 100644 index db08545..0000000 --- a/gn3/templates/base.html +++ /dev/null @@ -1,24 +0,0 @@ -{% from "common-macros.html" import flash_messages%} -<!DOCTYPE html> -<html lang="en"> - <head> - <meta charset="utf-8" /> - <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - - <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> - <h1>Genenetwork3: {%block pagetitle%}{%endblock%}</h1> - - <div class="container"> - {%block content%}{%endblock%} - </div> - {%block js%}{%endblock%} - <body> -</html> |