diff options
author | Pjotr Prins | 2020-10-28 08:43:02 +0000 |
---|---|---|
committer | Pjotr Prins | 2020-10-28 08:43:02 +0000 |
commit | 38ee6ad0cfa86b40566c8d45a92400b38351a717 (patch) | |
tree | 99601ef80b0b3a532c41a199deb8424ac254f697 /bh20simplewebuploader/templates/banner.html | |
parent | 29f349c504101d20407641c182773d53570e10c2 (diff) | |
download | bh20-seq-resource-38ee6ad0cfa86b40566c8d45a92400b38351a717.tar.gz bh20-seq-resource-38ee6ad0cfa86b40566c8d45a92400b38351a717.tar.lz bh20-seq-resource-38ee6ad0cfa86b40566c8d45a92400b38351a717.zip |
Use Flask url_for to make relative routes work
Diffstat (limited to 'bh20simplewebuploader/templates/banner.html')
-rw-r--r-- | bh20simplewebuploader/templates/banner.html | 2 |
1 files changed, 1 insertions, 1 deletions
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 @@ <section class="header"> - <div class="logo"><a href="http://covid-19.genenetwork.org/"><img src="static/image/coronasmallcomp.gif" width="150" title="COVID-19 image by Tyler Morgan-Wall"></a></div> + <div class="logo"><a href="http://covid-19.genenetwork.org/"><img src="{{ url_for('static',filename='image/coronasmallcomp.gif') }}" width="150" title="COVID-19 image by Tyler Morgan-Wall"></a></div> <h1>COVID-19 PubSeq: Public SARS-CoV-2 Sequence Resource</h1> <p><span id="Counter"></span> public sequences ready for <a href="/download">download</a>!</p> |