-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
98 lines (87 loc) · 3.32 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Mosque Information Screen</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" media="screen" href="./css/main.css" />
<link rel="stylesheet" type="text/css" media="screen" href="./css/bootstrap-grid.min.css" />
</head>
<body>
<div class="row">
<div class="col-6 section-time-and-notices">
<div class="datetime">
<div id="clock"></div>
</div>
<div id="dayOfTheWeek"></div>
<div id="date"></div>
<div id="islamicDate"></div>
<div class="donation-text">
<p class="italic">You can donate by texting</p>
<p class="bold text-info">ELMT12 £5 to 70070</p>
<p class="italic">or £1, £2, £3, £4 or £10</p>
</div>
</div>
<!-- <div id="logo">
<img src="./images/elm_logo.png" alt="logo">
</div> -->
<div class="col-6 section-prayer-times">
<table class="daily-prayer-times">
<thead>
<tr>
<th></th>
<th></th>
<th>Begins</th>
<th>Jama'ah</th>
</tr>
</thead>
<tbody>
<tr>
<th>Fajr</th>
<td></td>
<td id="fajr_begins">0:00</td>
<td id="fajr_jamaah">0:00</td>
</tr>
<tr>
<th>Zuhr</th>
<td></td>
<td id="zuhr_begins">0:00</td>
<td id="zuhr_jamaah">0:00</td>
</tr>
<tr>
<th rowspan="2">'Asr</th>
<td class="mithl-text">mithl 1</td>
<td id="asr1_begins">0:00</td>
<td id="asr_jamaah" rowspan="2">0:00</td>
</tr>
<tr>
<td class="mithl-text">mithl 2</td>
<td id="asr2_begins">0:00</td>
</tr>
<tr>
<th>Maghrib</th>
<td></td>
<td id="maghrib_begins">0:00</td>
<td id="maghrib_jamaah">0:00</td>
</tr>
<tr>
<th>Isha</th>
<td></td>
<td id="isha_begins">0:00</td>
<td id="isha_jamaah">0:00</td>
</tr>
</tbody>
</table>
</div>
</div>
<button id="toggleFullScreen">Start</button>
<script src="./js/lib/jquery.js"></script>
<script src="./js/lib/moment.js"></script>
<script src="./js/lib/moment-hijri.js"></script>
<script src="./js/clock.class.js"></script>
<script src="./js/screen.class.js"></script>
<script src="./js/prayer-times.class.js"></script>
<script src="./js/main.js"></script>
</body>
</html>