From 38ee6ad0cfa86b40566c8d45a92400b38351a717 Mon Sep 17 00:00:00 2001 From: Pjotr Prins Date: Wed, 28 Oct 2020 08:43:02 +0000 Subject: Use Flask url_for to make relative routes work --- bh20simplewebuploader/templates/banner.html | 2 +- bh20simplewebuploader/templates/footer.html | 19 ++++++++++--------- 2 files changed, 11 insertions(+), 10 deletions(-) (limited to 'bh20simplewebuploader') diff --git a/bh20simplewebuploader/templates/banner.html b/bh20simplewebuploader/templates/banner.html index 32db983..caf1f5c 100644 --- a/bh20simplewebuploader/templates/banner.html +++ b/bh20simplewebuploader/templates/banner.html @@ -1,5 +1,5 @@
- +

COVID-19 PubSeq: Public SARS-CoV-2 Sequence Resource

public sequences ready for download!

diff --git a/bh20simplewebuploader/templates/footer.html b/bh20simplewebuploader/templates/footer.html index f78e8bf..efa1817 100644 --- a/bh20simplewebuploader/templates/footer.html +++ b/bh20simplewebuploader/templates/footer.html @@ -14,30 +14,31 @@ the paper

+
- - BCC2020 COVID19 PubSeq Poster + + BCC2020 COVID19 PubSeq Poster

OUR SPONSORS

- +
- +
- +
- +
- +
- +
@@ -64,7 +65,7 @@ .then((resp) => resp.json()) .then(function (data) { count = data["sequences"]; - console.log(count); + console.log(["Counted: ",count]); span = document.getElementById("Counter"); txt = document.createTextNode(count); span.appendChild(txt); -- cgit v1.2.3