3
0
Fork 0

Merge pull request #290 from kiwix/add_footer

Add footer
master
Kelson 7 years ago committed by GitHub
commit bbff57e6aa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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
================= =================

@ -40,16 +40,16 @@
} }
.book__info { line-height: 18px; color: #777; font-weight: bold; font-size: 13px; } .book__info { line-height: 18px; color: #777; font-weight: bold; font-size: 13px; }
</style> </style>
<script>
$(function() {
$( "#accordion" ).accordion();
});
</script>
</head> </head>
<body class="kiwix"> <body class="kiwix">
<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>

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

Loading…
Cancel
Save