Add kiwix-serve welcome page footer

This commit is contained in:
Kelson 2019-05-04 13:52:05 +02:00
parent 6107bad17e
commit 3c24d0a026
3 changed files with 12 additions and 0 deletions

View File

@ -5,12 +5,14 @@ kiwix-manage
----------- -----------
* Better usage() * Better usage()
* Adding multiple files bug fix
kiwix-serve kiwix-serve
----------- -----------
* Better usage() * Better usage()
* Display properly welcome page on 3 columns * Display properly welcome page on 3 columns
* New welcome page footer "Powered by Kiwix"
kiwix-tools 1.2.1 kiwix-tools 1.2.1
================= =================

View File

@ -46,5 +46,10 @@
<div class="kiwix"> <div class="kiwix">
__BOOKS__ __BOOKS__
</div> </div>
<div id="kiwixfooter">
Powered by <a href="https://kiwix.org">Kiwix</a>
</div>
</body> </body>
</html> </html>

View File

@ -11,6 +11,11 @@
float: left; float: left;
} }
#kiwixfooter {
text-align: center;
margin-top: 1em;
}
.height_separator { .height_separator {
height: 3em; height: 3em;
} }