-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.php
36 lines (31 loc) · 844 Bytes
/
home.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
<?=template_header('Home')?>
<div class="wrapper">
<h1>Novi izdelki</h1>
<hr class="wrapper-devider">
<div class="wrapper-inner">
<?=template_products(new_products())?>
</div>
</div>
<?php if(on_sale()): ?>
<div class="wrapper">
<h1>Razprodaja</h1>
<hr class="wrapper-devider">
<div class="wrapper-inner">
<?=template_products(on_sale())?>
</div>
</div>
<?php endif;?>
<div class="wrapper">
<h1>Najbolj ocenjeni izdelki</h1>
<hr class="wrapper-devider">
<div class="wrapper-inner">
<?php
$products_array = array();
foreach(best_rated() as $item):
$products_array = array_merge($products_array, get_product($item['product_id']));
endforeach;
template_products($products_array);
?>
</div>
</div>
<?=template_footer()?>