Skip to content

Commit fe3b473

Browse files
committed
- Added links to important literary works and reorganized the sidebar content
1 parent 296e898 commit fe3b473

4 files changed

Lines changed: 32 additions & 19 deletions

File tree

index.html

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

modules/state.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { handleError } from '../main.js';
2-
export const APP_VERSION = '1.9.2025.11.28';
2+
export const APP_VERSION = '1.9.01.2025.11.29';
33
const SAVE_DEBOUNCE_MS = 500;
44
const COOKIE_LENGTH = 10;
55
let saveTimeout = null;

src/index.html

Lines changed: 29 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,21 @@ <h3>Christian Doctrine</h3>
151151
</div>
152152
</div>
153153

154+
<div class="sidebar-section">
155+
<div class="sidebar-section-header" data-section="importantWorks">
156+
<h3>Important Literary Works</h3>
157+
<span class="section-toggle" aria-hidden="true"><i class="fas fa-chevron-down"></i></span>
158+
</div>
159+
<div class="sidebar-section-content" id="content-importantWorks">
160+
<ul class="sidebar-links">
161+
<li><a href="https://www.monergism.com/thethreshold/sdg/calvin/Institutes%20-%20John%20Calvin.pdf" target="_blank" rel="noopener noreferrer">Institutes of the Christian Religion by John Calvin</a></li>
162+
<li><a href="https://www.monergism.com/thethreshold/sdg/luther/Bondage%20of%20the%20Will%20-%20Martin%20Luther.pdf" target="_blank" rel="noopener noreferrer">Bondage of the Will by Martin Luther</a></li>
163+
<li><a href="https://www.monergism.com/thethreshold/sdg/augustine/Confessions%20-%20Augustine.pdf" target="_blank" rel="noopener noreferrer">Confessions by St. Augsutine</a></li>
164+
<li><a href="https://www.monergism.com/thethreshold/sdg/owen/The%20Remainders%20of%20Indwelling%20Sin%20-%20John%20Owen.pdf" target="_blank" rel="noopener noreferrer">Indwelling Sin by John Owen</a></li>
165+
</ul>
166+
</div>
167+
</div>
168+
154169
<div class="sidebar-section">
155170
<div class="sidebar-section-header" data-section="studyTopics">
156171
<h3>Study Topics and FAQs</h3>
@@ -191,8 +206,6 @@ <h3>Theological Resources</h3>
191206
</div>
192207
<div class="sidebar-section-content" id="content-theological">
193208
<ul class="sidebar-links">
194-
<li><a href="https://www.monergism.com/thethreshold/sdg/calvin/Institutes%20-%20John%20Calvin.pdf" target="_blank" rel="noopener noreferrer">Institutes of the Christian Religion by John Calvin</a></li>
195-
<li><a href="https://www.monergism.com/thethreshold/sdg/luther/Bondage%20of%20the%20Will%20-%20Martin%20Luther.pdf" target="_blank" rel="noopener noreferrer">Bondage of the Will by Martin Luther</a></li>
196209
<li><a href="https://www.aomin.org" target="_blank" rel="noopener noreferrer">Alpha & Omega Ministries</a></li>
197210
<li><a href="https://answersingenesis.org" target="_blank" rel="noopener noreferrer">Answers in Genesis</a></li>
198211
<li><a href="https://biblethinker.org" target="_blank" rel="noopener noreferrer">BibleThinker</a></li>
@@ -244,6 +257,20 @@ <h3>Devotionals</h3>
244257
</div>
245258

246259
<div class="sidebar-section">
260+
<div class="sidebar-section-header" data-section="commentaries">
261+
<h3>Commentaries</h3>
262+
<span class="section-toggle" aria-hidden="true"><i class="fas fa-chevron-down"></i></span>
263+
</div>
264+
<div class="sidebar-section-content" id="content-commentaries">
265+
<ul class="sidebar-links">
266+
<li><a href="https://bestcommentaries.com" target="_blank" rel="noopener noreferrer">Best Commentaries</a></li>
267+
<li><a href="https://biblehub.com/commentaries" target="_blank" rel="noopener noreferrer">Bible Hub Commentaries</a></li>
268+
<li><a href="https://www.studylight.org/commentaries" target="_blank" rel="noopener noreferrer">Study Light</a></li>
269+
</ul>
270+
</div>
271+
</div>
272+
273+
<div class="sidebar-section">
247274
<div class="sidebar-section-header" data-section="studyTools">
248275
<h3>Study Tools</h3>
249276
<span class="section-toggle" aria-hidden="true"><i class="fas fa-chevron-down"></i></span>
@@ -264,20 +291,6 @@ <h3>Study Tools</h3>
264291
</ul>
265292
</div>
266293
</div>
267-
268-
<div class="sidebar-section">
269-
<div class="sidebar-section-header" data-section="commentaries">
270-
<h3>Commentaries</h3>
271-
<span class="section-toggle" aria-hidden="true"><i class="fas fa-chevron-down"></i></span>
272-
</div>
273-
<div class="sidebar-section-content" id="content-commentaries">
274-
<ul class="sidebar-links">
275-
<li><a href="https://bestcommentaries.com" target="_blank" rel="noopener noreferrer">Best Commentaries</a></li>
276-
<li><a href="https://biblehub.com/commentaries" target="_blank" rel="noopener noreferrer">Bible Hub Commentaries</a></li>
277-
<li><a href="https://www.studylight.org/commentaries" target="_blank" rel="noopener noreferrer">Study Light</a></li>
278-
</ul>
279-
</div>
280-
</div>
281294
</aside>
282295

283296
<!-- REFERENCE PANEL -->

src/modules/state.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import { handleError } from '../main.js';
99
CONSTANTS
1010
==================================================================== */
1111

12-
export const APP_VERSION = '1.9.2025.11.28';
12+
export const APP_VERSION = '1.9.01.2025.11.29';
1313
const SAVE_DEBOUNCE_MS = 500;
1414
const COOKIE_LENGTH = 10;
1515
let saveTimeout = null;

0 commit comments

Comments
 (0)