mirror of
https://github.com/janeczku/calibre-web
synced 2024-11-02 09:41:02 +00:00
bbf6d9b026
Bugfix for feeds - removed categories related and up - load new books now working - category random now working login page is free of non accessible elements boolean custom column is vivible in UI books with only with certain languages can be shown book shelfs can be deleted from UI Anonymous user view is more resticted Added browse of series in sidebar Dependencys in vendor folder are updated to newer versions (licencs files are now present) Bugfix editing Authors names Made upload on windows working
145 lines
5.5 KiB
HTML
145 lines
5.5 KiB
HTML
<!DOCTYPE html>
|
||
<html class="no-js">
|
||
<head>
|
||
<meta charset="utf-8">
|
||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
||
<title>ePubJS Reader</title>
|
||
<meta name="description" content="">
|
||
<meta name="viewport" content="width=device-width, user-scalable=no">
|
||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||
|
||
<link rel="stylesheet" href="{{ url_for('static', filename='css/normalize.css') }}">
|
||
<link rel="stylesheet" href="{{ url_for('static', filename='css/main.css') }}">
|
||
<link rel="stylesheet" href="{{ url_for('static', filename='css/popup.css') }}">
|
||
<script src="{{ url_for('static', filename='js/libs/jquery.min.js') }}"></script>
|
||
<script src="{{ url_for('static', filename='js/libs/zip.min.js') }}"></script>
|
||
|
||
<script>
|
||
"use strict";
|
||
|
||
document.onreadystatechange = function () {
|
||
if (document.readyState == "complete") {
|
||
EPUBJS.filePath = "{{ url_for('static', filename='js/libs/') }}";
|
||
EPUBJS.cssPath = "{{ url_for('static', filename='css/') }}";
|
||
|
||
window.reader = ePubReader("{{ url_for('static', filename=bookid) }}/");
|
||
//keybind
|
||
$(document).keydown(function(event){
|
||
if(event.keyCode == 37){
|
||
window.reader.book.prevPage();
|
||
}
|
||
if(event.keyCode == 39){
|
||
window.reader.book.nextPage();
|
||
}
|
||
});
|
||
//bind mouse
|
||
$(window).bind('DOMMouseScroll mousewheel', function(event) {
|
||
var delta = 0;
|
||
if (event.originalEvent.wheelDelta) {
|
||
delta = event.originalEvent.wheelDelta;
|
||
}else if (event.originalEvent.detail) {
|
||
delta = event.originalEvent.detail*-1;
|
||
}
|
||
if (delta >= 0) {
|
||
window.reader.book.prevPage();
|
||
}
|
||
else {
|
||
window.reader.book.nextPage();
|
||
}
|
||
});
|
||
}
|
||
};
|
||
|
||
</script>
|
||
|
||
<!-- File Storage -->
|
||
<!-- <script src="js/libs/localforage.min.js"></script> -->
|
||
|
||
<!-- Full Screen -->
|
||
<!--<script src="js/libs/screenfull.min.js"></script>-->
|
||
<script src="{{ url_for('static', filename='js/libs/screenfull.min.js') }}"></script>
|
||
|
||
<!-- Render -->
|
||
<!--<script src="js/epub.min.js"></script>-->
|
||
<script src="{{ url_for('static', filename='js/epub.min.js') }}"></script>
|
||
|
||
<!-- Hooks -->
|
||
<!--<script src="js/hooks.min.js"></script>-->
|
||
<script src="{{ url_for('static', filename='js/hooks.min.js') }}"></script>
|
||
|
||
<!-- Reader -->
|
||
<!--<script src="js/reader.min.js"></script>-->
|
||
<script src="{{ url_for('static', filename='js/reader.min.js') }}"></script>
|
||
|
||
<!-- Plugins -->
|
||
<!-- <script src="js/plugins/search.js"></script> -->
|
||
<!--script src="{{ url_for('static', filename='js/plugins/search.js') }}"></script-->
|
||
|
||
</head>
|
||
<body>
|
||
<div id="sidebar">
|
||
<div id="panels">
|
||
<!--input id="searchBox" placeholder="search" type="search"-->
|
||
|
||
<!--a id="show-Search" class="show_view icon-search" data-view="Search">Search</a-->
|
||
<a id="show-Toc" class="show_view icon-list-1 active" data-view="Toc">TOC</a>
|
||
<a id="show-Bookmarks" class="show_view icon-bookmark" data-view="Bookmarks">Bookmarks</a>
|
||
<a id="show-Notes" class="show_view icon-edit" data-view="Notes">Notes</a>
|
||
|
||
</div>
|
||
<div id="tocView" class="view">
|
||
</div>
|
||
<div id="searchView" class="view">
|
||
<ul id="searchResults"></ul>
|
||
</div>
|
||
<div id="bookmarksView" class="view">
|
||
<ul id="bookmarks"></ul>
|
||
</div>
|
||
<div id="notesView" class="view">
|
||
<div id="new-note">
|
||
<textarea id="note-text"></textarea>
|
||
<button id="note-anchor">Anchor</button>
|
||
</div>
|
||
<ol id="notes"></ol>
|
||
</div>
|
||
</div>
|
||
<div id="main">
|
||
|
||
<div id="titlebar">
|
||
<div id="opener">
|
||
<a id="slider" class="icon-menu">Menu</a>
|
||
</div>
|
||
<div id="metainfo">
|
||
<span id="book-title"></span>
|
||
<span id="title-seperator"> – </span>
|
||
<span id="chapter-title"></span>
|
||
</div>
|
||
<div id="title-controls">
|
||
<a id="bookmark" class="icon-bookmark-empty">Bookmark</a>
|
||
<a id="setting" class="icon-cog">Settings</a>
|
||
<a id="fullscreen" class="icon-resize-full">Fullscreen</a>
|
||
</div>
|
||
</div>
|
||
|
||
<div id="divider"></div>
|
||
<div id="prev" class="arrow">‹</div>
|
||
<div id="viewer"></div>
|
||
<div id="next" class="arrow">›</div>
|
||
|
||
<div id="loader"><img src="{{ url_for('static', filename='img/loader.gif') }}"></div>
|
||
</div>
|
||
<div class="modal md-effect-1" id="settings-modal">
|
||
<div class="md-content">
|
||
<h3>Settings</h3>
|
||
<div>
|
||
<p>
|
||
<input type="checkbox" id="sidebarReflow" name="sidebarReflow">{{_(Reflow text when sidebars are open.)}}
|
||
</p>
|
||
</div>
|
||
<div class="closer icon-cancel-circled"></div>
|
||
</div>
|
||
</div>
|
||
<div class="overlay"></div>
|
||
</body>
|
||
</html>
|