summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHelmut Grohne <helmut@subdivi.de>2019-03-19 21:09:46 +0100
committerHelmut Grohne <helmut@subdivi.de>2019-03-19 21:09:46 +0100
commit2153cf032b8690aff87a601bdb0e48bf25a5247a (patch)
treed351526dc80bcdfb2c6a540e06ded14b8dcb33dd
parent1382d4db5039c24940d5215a3640833230a1b731 (diff)
downloadcrossqa-2153cf032b8690aff87a601bdb0e48bf25a5247a.tar.gz
webapp.py: fix html structure
<footer> must be inside <body>
-rw-r--r--webapp.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/webapp.py b/webapp.py
index eece841..bf82bda 100644
--- a/webapp.py
+++ b/webapp.py
@@ -136,14 +136,14 @@ footer {
</table>
</section>
{%- endif -%}
+ <footer>
+ <h3>Details about this service</h3>
+ <ul>
+ <li>Maintainer: Helmut Grohne &lt;helmut@subdivi.de&gt;</li>
+ <li>Source: git://git.subdivi.de/~helmut/crossqa.git</li>
+ </ul>
+ </footer>
</body>
- <footer>
- <h3>Details about this service</h3>
- <ul>
- <li>Maintainer: Helmut Grohne &lt;helmut@subdivi.de&gt;</li>
- <li>Source: git://git.subdivi.de/~helmut/crossqa.git</li>
- </ul>
- </footer>
</html>
"""