diff options
author | Helmut Grohne <helmut@subdivi.de> | 2019-03-19 21:09:46 +0100 |
---|---|---|
committer | Helmut Grohne <helmut@subdivi.de> | 2019-03-19 21:09:46 +0100 |
commit | 2153cf032b8690aff87a601bdb0e48bf25a5247a (patch) | |
tree | d351526dc80bcdfb2c6a540e06ded14b8dcb33dd | |
parent | 1382d4db5039c24940d5215a3640833230a1b731 (diff) | |
download | crossqa-2153cf032b8690aff87a601bdb0e48bf25a5247a.tar.gz |
webapp.py: fix html structure
<footer> must be inside <body>
-rw-r--r-- | webapp.py | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -136,14 +136,14 @@ footer { </table> </section> {%- endif -%} + <footer> + <h3>Details about this service</h3> + <ul> + <li>Maintainer: Helmut Grohne <helmut@subdivi.de></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 <helmut@subdivi.de></li> - <li>Source: git://git.subdivi.de/~helmut/crossqa.git</li> - </ul> - </footer> </html> """ |