Kovid Goyal baadfc000c ...
2010-10-09 22:59:50 -06:00

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}">&rarr;&nbsp;{library_name}</p>
</div>
</div>
</div>
<div id="content">
<div class="sort_select">
<label>{sort_select_label}&nbsp;</label>
<select id="sort_combobox">
{sort_select_options}
</select>
</div>
<div id="search_box">
<form name="search_form" action="/browse/search" method="get">
Search:&nbsp;<input value="" type="text" title="Search"
class="search_input" />
<input type="submit" value="Search" title="Search" alt="Search" />
</form>
</div>
</div>
</div>
</body>
</html>