forked from digitalbiblesociety/browserbible
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreader.html
executable file
·63 lines (49 loc) · 1.89 KB
/
reader.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Bible - Reader</title>
<!-- Apple specific code -->
<meta name="viewport" content="user-scalable=no, initial-scale=1.0" /> <!-- width=device-width, -->
<meta name="apple-mobile-web-app-capable" content="yes" />
<!-- replacement console for IE -->
<script>
if (typeof console == 'undefined') { window.console = {log:function() {}}; }
</script>
<link rel="shortcut icon" href="css/images/reader-favicon.png" type="image/x-icon">
<script src="js/jquery.min.js"></script>
<script src="js/utility/jstorage.js"></script>
<script src="js/bible/bible.js"></script>
<script src="js/bible/bible.data.js"></script>
<script src="js/bible/bible.morphology.js"></script>
<script src="js/bible/bible.versions.js"></script>
<script src="js/bible/bible.reference.js"></script>
<script src="js/docs/docs.namespace.js"></script>
<script src="js/docs/docs.detection.js"></script>
<script src="js/docs/docs.localizer.js"></script>
<script src="js/docs/docs.modal.js"></script>
<script src="js/docs/docs.plugins.js"></script>
<script src="js/docs/plugins.lemmapopup.js"></script>
<script src="js/docs/plugins.matchwords.js"></script>
<script src="js/docs/plugins.notes.js"></script>
<script src="js/docs/plugins.matchverses.js"></script>
<script src="js/reader.js"></script>
<link rel="stylesheet" href="css/bible.css" />
<link rel="stylesheet" href="css/reader.css" />
</head>
<body>
<div id="container">
<div id="header" class="stacked">
<span id="version2" class="version-selector">V2</span>
<span id="version1" class="version-selector">V1</span>
<span id="logo">Bible</span>
<span id="reference" class="reference-selector">R</span>
</div>
<div id="main">
<div id="content">
<table><tbody></tbody></table>
</div>
</div>
</div>
</body>
</html>