-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
100 lines (81 loc) · 3.06 KB
/
index.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BusyBible: An Audio Bible for Busy People</title>
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<header>
<h1>BusyBible: An Audio Bible for Busy People</h1>
</header>
<main>
<section id="statusReport">
<h3>Status: <span id="status"></span></h3>
</section>
<section id="links">
<!-- Your links go here -->
</section>
<section id="README">
Instructions can be found in the <a href="https://github.com/yclicc/BusyBible">README</a>.
</section>
<section id="dateOffsetDiv">
<label for="offsetSelector">Select an offset:</label>
<input type="number" id="offsetSelector" step="1">
</section>
<section id="translationSelectorDiv">
<label for="translationSelector">Select a translation:</label>
<select id="translationSelector"></select>
</section>
<section id="presetPlanSelectorDiv" class="buttonContainer">
Select a preset plan:
</section>
<section id="copyLinkDiv" class="buttonContainer">
<button id="copyPlanLink">Copy Plan Link To Clipboard
<span class="tooltiptext">Copies a link to this plan. Passages will change each day.</span>
</button>
<button id="copyPassagesLink">Copy Passages Link To Clipboard
<span class="tooltiptext">Copies a link to these passages. Anyone using the link will see the current displayed passages.</span>
</button>
<button id="copyNextPassagesLink">Copy Next Passages Link To Clipboard
<span class="tooltiptext">Copies a link to the NEXT set of passages. Useful if you aren't sure you will be coming back every day.</span>
</button>
</section>
<details>
<summary>Settings</summary>
<div class="collapsible-content">
<label for="startDateSelector">Select a start date:</label>
<input type="date" id="startDateSelector">
<div>
<label for="numLists">How many lists:</label>
<input type="number" id="numLists" name="numLists" min="1" value="1">
<button id="increment">+</button>
<button id="decrement">-</button>
</div>
<div>
<button id="appendButton">Append To</button>
<button id="replaceButton">Replace</button>
<label for="selectList"> list:</label>
<input type="number" id="selectList" name="selectList" min="1" max="1" value="1">
<button id="clearSelectionButton">Clear Selection</button>
</div>
<div id="planEditor">
<div id="listOfBooksDiv">
<h4>List of Books</h4>
<ul id="listOfBooks">
<!-- Your book list goes here -->
</ul>
</div>
<div id="planListsDiv">
<h4>Plan Lists</h4>
<!-- Your plan lists go here -->
</div>
</div>
</div>
</details>
</main>
<script src="js/logic.js"></script>
<script src="js/loadBibleData.js"></script>
</body>
</html>