From efaf3a4abe2f6ae5b67578182085d18d05f25c5f Mon Sep 17 00:00:00 2001 From: Hao Chen Date: Wed, 8 May 2019 01:55:31 -0500 Subject: multiple genes allowed --- templates/index.html | 14 ++++++++++++++ templates/layout.html | 46 ++++++++++++++++++++++++++++++++++++++++++++++ templates/network.html | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 106 insertions(+) create mode 100644 templates/index.html create mode 100644 templates/layout.html create mode 100644 templates/network.html (limited to 'templates') diff --git a/templates/index.html b/templates/index.html new file mode 100644 index 0000000..c7bafcd --- /dev/null +++ b/templates/index.html @@ -0,0 +1,14 @@ +{% extends "layout.html" %} +{% block content %} + + +

Searching PubMed to find sentences related to addiction

+
+ + +
+ +{% endblock %} + + + diff --git a/templates/layout.html b/templates/layout.html new file mode 100644 index 0000000..1a81c1a --- /dev/null +++ b/templates/layout.html @@ -0,0 +1,46 @@ + + + + + + + + + + + + + GatPub: Gene Addictionness through PubMed + + + + + +
+ {% block content %}{% endblock %} +
+ + + + + + + diff --git a/templates/network.html b/templates/network.html new file mode 100644 index 0000000..24c18c1 --- /dev/null +++ b/templates/network.html @@ -0,0 +1,46 @@ +{% extends "layout.html" %} +{% block content %} + + + + +
+ + +{% endblock %} -- cgit v1.2.3