-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgold-price-view.php
More file actions
29 lines (28 loc) · 1.05 KB
/
gold-price-view.php
File metadata and controls
29 lines (28 loc) · 1.05 KB
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
<div class="table-responsive">
<table class="gold table">
<thead>
<tr>
<th><p class="p-prayer"><?php _e('Carat','gold-price')?></p></th>
<th><p class="p-prayer"><?php _e('Price','gold-price')?></p></th>
</tr>
</thead>
<tbody>
<tr>
<td><p class="p-prayer"><?php _e('Ounce','gold-price')?></p></td>
<td><p class="p-prayer"><i class="fa fa-circle-thin"></i> <?=$data['ounce'].' '.$data['Currency_title']?></p></td>
</tr>
<tr>
<td><p class="p-prayer"><?php _e('24 Carat','gold-price')?></p></td>
<td><p class="p-prayer"><i class="fa fa-circle-thin"></i> <?=$data['24'].' '.$data['Currency_title']?></p></td>
</tr>
<tr>
<td><p class="p-prayer"><?php _e('21 Carat','gold-price')?></p></td>
<td><p class="p-prayer"><i class="fa fa-circle-thin"></i> <?=$data['21'].' '.$data['Currency_title']?></p></td>
</tr>
<tr>
<td><p class="p-prayer"><?php _e('18 Carat','gold-price')?></p></td>
<td><p class="p-prayer"><i class="fa fa-circle-thin"></i> <?=$data['18'].' '.$data['Currency_title']?></p></td>
</tr>
</tbody>
</table>
</div>