Files
koodo-reader/public/index.html
troyeguo b455f1c11a fix bug
Former-commit-id: f941f9a122cb7ecbf8142f12cec36d5f3d79cb04
2020-09-13 19:37:28 +08:00

81 lines
2.2 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="%PUBLIC_URL%/favicon.png" />
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
<link
href="https://fonts.googleapis.com/css?family=Noto+Sans+TC"
rel="stylesheet"
/>
<link rel="dns-prefetch" href="https://reader.960960.xyz" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="keywords" content="epub reader free koodo" />
<meta
itemprop="name"
content="Koodo Reader - Free Epub Reader for Windows, Mac and Web"
/>
<meta
itemprop="description"
content="Koodo Reader is a open-source epub reader with backup and restore support, runs on Windows, Mac and Web"
/>
<style>
#root {
height: 100%;
width: 100%;
}
</style>
<!-- <script
type="text/javascript"
src="%PUBLIC_URL%/lib/JSZip/jszip.js"
></script> -->
<title>Koodo Reader</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<script
type="text/javascript"
src="%PUBLIC_URL%/lib/JSZip/jszip.min.js"
></script>
<script
type="text/javascript"
src="%PUBLIC_URL%/lib/EpubJS/epub.min.js"
></script>
<script
type="text/javascript"
src="%PUBLIC_URL%/lib/Dropbox/Dropbox-sdk.min.js"
></script>
<script
type="text/javascript"
src="%PUBLIC_URL%/lib/PDF/pdf.min.js"
></script>
<script
type="text/javascript"
src="%PUBLIC_URL%/lib/Rangy/rangy-core.js"
></script>
<script
type="text/javascript"
src="%PUBLIC_URL%/lib/Rangy/rangy-serializer.js"
></script>
<script
type="text/javascript"
src="%PUBLIC_URL%/lib/Rangy/rangy-classapplier.js"
></script>
<script
type="text/javascript"
src="%PUBLIC_URL%/lib/Rangy/rangy-highlighter.js"
></script>
<script
type="text/javascript"
src="%PUBLIC_URL%/lib/Rangy/rangy-textrange.js"
></script>
<script
type="text/javascript"
src="%PUBLIC_URL%/lib/Hammer/hammer.min.js"
></script>
</body>
</html>