Subversion Repositories SmartDukaan

Rev

Rev 13672 | Rev 13723 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
13715 anikendra 1
<!-- <ul class="nav nav-tabs">
13570 anikendra 2
  <li class="<?php if($this->params->controller == 'store_products'):?>active<?php endif;?> col-xs-6">
3
    <a href="/deals">Deals</a></li>
13567 anikendra 4
  <li class="col-xs-6 <?php if($this->params->controller == 'categories'):?>active<?php endif;?>">
5
    <a href="/categorydeals">Categories</a></li>
6
  </li>
7
</ul>
13672 anikendra 8
<div class="filters">
9
	<p>Daily profitable deals for you</p>
13715 anikendra 10
</div> -->
11
<ul class="nav nav-tabs">
12
<?php foreach($categories AS $catId => $name):?>
13
  <li class="<?php if((isset($id) && $catId == $id) || (!isset($id) && $name == 'Mobiles')):?>active<?php endif;?> col-xs-6">
14
    <a href="/category/<?php echo $catId;?>"><?php echo $name;?></a></li>
15
<?php endforeach;?>
16
</ul>
17
<div class="filters">
18
	<p>Daily profitable deals for you</p>
19
</div>