mirror of https://github.com/kiwix/libkiwix.git
+ kiwix-serve welcome page using jsquery
This commit is contained in:
parent
4dd4d510c9
commit
69c3c4340f
|
@ -0,0 +1,21 @@
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8" />
|
||||||
|
<title>Welcome to Kiwix Server</title>
|
||||||
|
<link type="text/css" href="/skin/jqueryui/css/smoothness/jquery-ui.custom.css" rel="Stylesheet" />
|
||||||
|
<script type="text/javascript" src="/skin/jqueryui/js/jquery.min.js"></script>
|
||||||
|
<script type="text/javascript" src="/skin/jqueryui/js/jquery-ui.custom.min.js"></script>
|
||||||
|
<script>
|
||||||
|
$(function() {
|
||||||
|
$( "#accordion" ).accordion();
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id="accordion">
|
||||||
|
__BOOKS__
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
Loading…
Reference in New Issue