| Line 1... |
Line 1... |
| 1 |
<?php if(!empty($deals)):?>
|
1 |
<?php if(!empty($deals)):?>
|
| 2 |
<?php foreach($deals AS $categoryId => $catdeals):?>
|
2 |
<?php foreach($deals AS $categoryId => $catdeals):?>
|
| 3 |
<div class="scrollable">
|
- |
|
| 4 |
<div class="subheader row">
|
3 |
<div class="subheader row">
|
| 5 |
<div class="col-xs-6">
|
4 |
<div class="col-xs-6">
|
| 6 |
<h4><?php echo $categories[$categoryId];?></h4>
|
5 |
<h4><?php echo $categories[$categoryId];?></h4>
|
| 7 |
</div>
|
6 |
</div>
|
| 8 |
<div class="col-xs-6 text-right">
|
7 |
<div class="col-xs-6 text-right">
|
| 9 |
<a href="/category/<?php echo $categoryId;?>">See All ></a>
|
8 |
<a href="/category/<?php echo $categoryId;?>"><h5>See All ></h5></a>
|
| 10 |
</div>
|
9 |
</div>
|
| 11 |
</div>
|
10 |
</div>
|
| - |
|
11 |
<div class="scrollable">
|
| 12 |
<ul class="list-unstyled list-inline swipable row">
|
12 |
<ul class="list-unstyled list-inline swipable row">
|
| 13 |
<?php foreach ($catdeals as $key => $deal):?>
|
13 |
<?php foreach ($catdeals as $key => $deal):?>
|
| 14 |
<li class="list">
|
14 |
<li class="list">
|
| 15 |
<div class="product_image img img-responsive">
|
15 |
<div class="product_image img img-responsive">
|
| 16 |
<img src="<?php echo $base_url;?>app/webroot/timthumb.php?h=120&src=<?php echo $deal[0]['StoreProduct']['thumbnail'];?>" class="viewproduct productthumb" data-id="<?php echo $deal[0]['StoreProduct']['id'];?>">
|
16 |
<img src="<?php echo $base_url;?>app/webroot/timthumb.php?h=120&src=<?php echo $deal[0]['StoreProduct']['thumbnail'];?>" class="viewproduct productthumb" data-id="<?php echo $deal[0]['StoreProduct']['id'];?>">
|
| Line 35... |
Line 35... |
| 35 |
</ul>
|
35 |
</ul>
|
| 36 |
</div>
|
36 |
</div>
|
| 37 |
<?php endforeach;?>
|
37 |
<?php endforeach;?>
|
| 38 |
<?php endif;?>
|
38 |
<?php endif;?>
|
| 39 |
<script type="text/javascript" src="/js/jquery.jscroll.min.js"></script>
|
39 |
<script type="text/javascript" src="/js/jquery.jscroll.min.js"></script>
|
| 40 |
<script type="text/javascript" src="/js/profittill.js"></script>
|
40 |
<script type="text/javascript" src="/js/profittill.js?v=<?php echo $staticversion;?>"></script>
|