Add an about box to the catalog. fix #20
This commit is contained in:
parent
892b6dd624
commit
ddb7442c4a
20
about.xml
Normal file
20
about.xml
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
<div class="entryTitle">Authors</div>
|
||||||
|
<div class="content" style="max-width:700px;">
|
||||||
|
<p>COPS is developped and maintained by Sébastien Lucas.</p>
|
||||||
|
|
||||||
|
<p>See full history on <a href="https://github.com/seblucas">Github</a> to check all authors.</p>
|
||||||
|
|
||||||
|
<p>COPS use some external librairies, check README for the details.</p>
|
||||||
|
</div>
|
||||||
|
<div class="entryTitle">Copyright</div>
|
||||||
|
<div class="content" style="max-width:700px;">
|
||||||
|
<p>This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2 as published by the Free Software Foundation.</p>
|
||||||
|
|
||||||
|
<p>The complete content of license is provided in file COPYING within distribution and also available <a href="http://www.gnu.org/licenses/gpl-2.0.html">online</a>.</p>
|
||||||
|
</div>
|
||||||
|
<div class="entryTitle">Contact</div>
|
||||||
|
<div class="content" style="max-width:700px;">
|
||||||
|
<p>For more info please visit <a href="http://blog.slucas.fr/en/oss/calibre-opds-php-server">COPS Home Page</a></p>
|
||||||
|
|
||||||
|
<p>You can also check <a href="http://www.mobileread.com/forums/showthread.php?t=170903">COPS's topic on MobileRead forum</a>.</p>
|
||||||
|
</div>
|
BIN
images/info.png
Normal file
BIN
images/info.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 734 B |
16
index.php
16
index.php
|
@ -83,6 +83,14 @@
|
||||||
<?php if ($isEink) echo ", openEffect : 'none', closeEffect : 'none', helpers : {overlay : null}"; ?>
|
<?php if ($isEink) echo ", openEffect : 'none', closeEffect : 'none', helpers : {overlay : null}"; ?>
|
||||||
});
|
});
|
||||||
|
|
||||||
|
$(".fancyabout").fancybox({
|
||||||
|
'type' : 'ajax',
|
||||||
|
title : 'COPS <?php echo VERSION ?>',
|
||||||
|
prevEffect : 'none',
|
||||||
|
nextEffect : 'none'
|
||||||
|
<?php if ($isEink) echo ", openEffect : 'none', closeEffect : 'none', helpers : {overlay : null}"; ?>
|
||||||
|
});
|
||||||
|
|
||||||
$("#searchImage").click(function(){
|
$("#searchImage").click(function(){
|
||||||
if ($("#search").is(":hidden")) {
|
if ($("#search").is(":hidden")) {
|
||||||
$("#search").slideDown("slow");
|
$("#search").slideDown("slow");
|
||||||
|
@ -238,10 +246,14 @@
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="foot">
|
||||||
|
<div class="footright">
|
||||||
|
<a class="fancyabout" href="about.xml"><img src="<?php echo getUrlWithVersion("images/info.png") ?>" alt="Home" /></a>
|
||||||
|
</div>
|
||||||
<?php
|
<?php
|
||||||
if ($currentPage->isPaginated ()) {
|
if ($currentPage->isPaginated ()) {
|
||||||
?>
|
?>
|
||||||
<div class="foot">
|
|
||||||
<div class="footcenter">
|
<div class="footcenter">
|
||||||
<?php
|
<?php
|
||||||
if (!is_null ($prevLink)) {
|
if (!is_null ($prevLink)) {
|
||||||
|
@ -259,10 +271,10 @@
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
<?php
|
<?php
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
Loading…
Reference in a new issue