-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbooklist.inc.php
28 lines (28 loc) · 982 Bytes
/
booklist.inc.php
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
<!-- Modal dialog displaying abbreviations of books of the Bible -->
<div class="modal" id="bibleBooksModal" tabindex="-1">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Forkortelser</h5>
<button type="button" class="close" data-dismiss="modal">
×
</button>
</div>
<div class="modal-body">
<table class="mx-auto">
<?php
foreach ($title as $abb => $name) {
if ($abb==='NT')
echo "<tr><td> </td><td> </td></tr>\n"; // Separator between OT and NT
else if ($abb!=='GT')
echo "<tr><td>$abbrev[$abb]</td><td class=\"pl-3\">$name</td>\n";
}
?>
</table>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Luk</button>
</div>
</div>
</div>
</div>