Subversion Repositories SmartDukaan

Rev

Rev 13746 | Rev 13925 | 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">
13732 anikendra 2
	<li class="<?php if(!isset($id)):?>active<?php endif;?> col-xs-4"><a href="/deals/mine">All</a></li>
13715 anikendra 3
<?php foreach($categories AS $catId => $name):?>
13723 anikendra 4
  <li class="<?php if((isset($id)) && $catId == $id):?>active<?php endif;?> col-xs-4">
13715 anikendra 5
    <a href="/category/<?php echo $catId;?>"><?php echo $name;?></a></li>
6
<?php endforeach;?>
7
</ul>
8
<div class="filters">
13746 anikendra 9
	<div class="col-xs-8 herotext">Daily profitable deals for you</div>
10
	<div class="col-xs-4 ">
11
		<div class="dropdown pull-right">
12
		  <button class="btn btn-default dropdown-toggle" type="button" id="dropdownMenu1" data-toggle="dropdown" aria-expanded="true">
13808 anikendra 13
		  	<span class="caret"></span> SORT		    
13746 anikendra 14
		  </button>
15
		  <ul class="dropdown-menu dropdown-menu-right" role="menu" aria-labelledby="dropdownMenu1">
13808 anikendra 16
		  	<!-- <li role="presentation" class="dropdown-header menu-item">FILTER</li>
13746 anikendra 17
		    <li role="presentation" class="menu-item"><a role="menuitem" tabindex="-1" href="#">Brand</a></li>
18
		    <li role="presentation" class="menu-item"><a role="menuitem" tabindex="-1" href="#">Price-range</a></li>
13808 anikendra 19
		    <li role="presentation" class="menu-item"><a role="menuitem" tabindex="-1" href="#">Sub-category</a></li> -->
13746 anikendra 20
		    <li role="presentation" class="dropdown-header menu-item">SORT</li>
13808 anikendra 21
		    <li role="presentation" class="menu-item"><a role="menuitem" tabindex="-1" href="?sort=bestSellerPoints&direction=1">Bestsellers</a></li>
22
		    <li role="presentation" class="menu-item"><a role="menuitem" tabindex="-1" href="?sort=available_price&direction=1">Price Low to High</a></li>
23
		    <li role="presentation" class="menu-item"><a role="menuitem" tabindex="-1" href="?sort=available_price&direction=-1">Price High to Low</a></li>
24
		    <li role="presentation" class="menu-item"><a role="menuitem" tabindex="-1" href="?sort=-1">Recommended</a></li>
13746 anikendra 25
		  </ul>
26
		</div>
27
	</div>	
13715 anikendra 28
</div>