mirror of
https://github.com/kovidgoyal/calibre.git
synced 2026-02-04 10:03:30 -05:00
56 lines
2.0 KiB
HTML
56 lines
2.0 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>
|
|
<!--
|
|
Base template that defines navigation/footers etc.
|
|
-->
|
|
<head>
|
|
<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="/static/browse.css" />
|
|
<link type="text/css" href="/static/jquery_ui/css/pepper-grinder/jquery-ui-1.8.5.custom.css" rel="stylesheet" />
|
|
|
|
<script type="text/javascript" src="/static/jquery.js"></script>
|
|
<script type="text/javascript" src="/static/jquery.corner.js"></script>
|
|
<script type="text/javascript" src="/static/jquery_ui/js/jquery-ui-1.8.5.custom.min.js"></script>
|
|
|
|
<script type="text/javascript" src="/static/browse.js"></script>
|
|
|
|
<script type="text/javascript">
|
|
$(document).ready(function() {{
|
|
init();
|
|
{script}
|
|
}});
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div id="container">
|
|
<div id="header">
|
|
<div class="area">
|
|
<div class="bubble">
|
|
<p title="Showing library: {library_path}">→ {library_name}</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<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="/browse/search" method="get">
|
|
Search: <input value="" type="text" title="Search"
|
|
class="search_input" />
|
|
<input type="submit" value="Search" title="Search" alt="Search" />
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|