mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-09-29 15:31:08 -04:00
102 lines
4.2 KiB
HTML
102 lines
4.2 KiB
HTML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
<title>..:: calibre {library} ::.. {title}</title>
|
|
<meta http-equiv="X-UA-Compatible" content="IE=100" />
|
|
<link rel="icon" type="image/x-icon" href="http://calibre-ebook.com/favicon.ico" />
|
|
|
|
<link rel="stylesheet" type="text/css" href="{prefix}/static/browse/browse.css" />
|
|
<link type="text/css" href="{prefix}/static/jquery_ui/css/humanity-custom/jquery-ui-1.8.5.custom.css" rel="stylesheet" />
|
|
<link rel="stylesheet" type="text/css" href="{prefix}/static/jquery.multiselect.css" />
|
|
|
|
<script type="text/javascript" src="{prefix}/static/jquery.js"></script>
|
|
<script type="text/javascript" src="{prefix}/static/jquery.corner.js"></script>
|
|
|
|
<script type="text/javascript"
|
|
src="{prefix}/static/jquery_ui/js/jquery-ui-1.8.5.custom.min.js"></script>
|
|
<script type="text/javascript"
|
|
src="{prefix}/static/jquery.multiselect.min.js"></script>
|
|
|
|
|
|
<script type="text/javascript" src="{prefix}/static/browse/browse.js"></script>
|
|
|
|
<script type="text/javascript">
|
|
var sort_cookie_name = "{sort_cookie_name}";
|
|
var sort_select_label = "{sort_select_label}";
|
|
var url_prefix = "{prefix}";
|
|
$(document).ready(function() {{
|
|
init();
|
|
{script}
|
|
}});
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div id="container">
|
|
|
|
<!-- Header -->
|
|
<div id="header">
|
|
<div class="area">
|
|
<div class="bubble">
|
|
<p><a href="{prefix}/browse" title="Return to top level"
|
|
>→ {home} ←</a></p>
|
|
</div>
|
|
</div>
|
|
<div id="nav-container">
|
|
<ul id="primary-nav">
|
|
<li><a id="nav-mobile" href="{prefix}/mobile" title="A version of this website suited for mobile browsers">Mobile</a></li>
|
|
|
|
<li><a id="nav-demo" href="{prefix}/old" title="The old version of this webiste">Old</a></li>
|
|
<li><a id="nav-download" href="{prefix}/opds" title="An OPDS feed based version of this website, used in special purpose applications">Feed</a></li>
|
|
</ul>
|
|
</div>
|
|
|
|
<form id="donate" action="https://www.paypal.com/cgi-bin/webscr"
|
|
method="post" title="Donate to support the development of calibre">
|
|
<div>
|
|
<input type="hidden" name="cmd" value="_s-xclick"></input>
|
|
<input type="hidden" name="hosted_button_id" value="3028915"></input>
|
|
<input type="image"
|
|
src="{prefix}/static/button-donate.png"
|
|
name="submit"></input>
|
|
<img alt="" src="https://www.paypal.com/en_US/i/scr/pixel.gif"
|
|
width="1" height="1"></img>
|
|
</div>
|
|
</form>
|
|
<div id="calibre-home-link" title="Go to the calibre website"></div>
|
|
</div>
|
|
<!-- End header -->
|
|
|
|
<div id="content">
|
|
<div class="sort_select">
|
|
<label>{sort_select_label}</label>
|
|
<select id="sort_combobox">
|
|
{sort_select_options}
|
|
</select>
|
|
</div>
|
|
<div id="search_box">
|
|
<form name="search_form" action="{prefix}/browse/search" method="get" accept-charset="UTF-8">
|
|
<input value="{initial_search}" type="text" title="Search" name="query"
|
|
class="search_input" />
|
|
<input type="submit" value="{Search}" title="{Search}" alt="{Search}" />
|
|
</form>
|
|
</div>
|
|
<div> </div>
|
|
<div> </div>
|
|
<div> </div>
|
|
|
|
<div id="main">
|
|
{main}
|
|
</div>
|
|
<div id="footer">
|
|
[{library_path}] Created by Kovid Goyal
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div id="book_details_dialog"></div>
|
|
<div id="goto_page_dialog"></div>
|
|
</body>
|
|
</html>
|