-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpray-times-view.php
36 lines (36 loc) · 1.11 KB
/
pray-times-view.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
29
30
31
32
33
34
35
36
<div class="table-responsive">
<table class="prayer table table-hover">
<thead>
<tr>
<th><p class="p-prayer">الصلاه</p></th>
<th><p class="p-prayer">التوقيت</p></th>
</tr>
</thead>
<tbody>
<tr>
<td><p class="p-prayer">الفجر</p></td>
<td><p class="p-prayer"><i class="fa fa-clock-o"></i> <?=$times[0]?></p></td>
</tr>
<tr>
<td><p class="p-prayer">الشروق</p></td>
<td><p class="p-prayer"><i class="fa fa-clock-o"></i> <?=$times[1]?></p></td>
</tr>
<tr>
<td><p class="p-prayer">الظهر</p></td>
<td><p class="p-prayer"><i class="fa fa-clock-o"></i> <?=$times[2]?></p></td>
</tr>
<tr>
<td><p class="p-prayer">العصر</p></td>
<td><p class="p-prayer"><i class="fa fa-clock-o"></i> <?=$times[3]?></p></td>
</tr>
<tr>
<td><p class="p-prayer">المغرب</p></td>
<td><p class="p-prayer"><i class="fa fa-clock-o"></i> <?=$times[4]?></p></td>
</tr>
<tr>
<td><p class="p-prayer">العشاء</p></td>
<td><p class="p-prayer"><i class="fa fa-clock-o"></i> <?=$times[6]?></p></td>
</tr>
</tbody>
</table>
</div>