Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
13579 anikendra 1
<?php if(!empty($deals)):?>
13583 anikendra 2
    <?php foreach($deals AS $deal):?>    
13579 anikendra 3
    <div class="col-xs-6 card">
13672 anikendra 4
      hhe
13579 anikendra 5
      <div class="product_image img img-responsive">
6
        <img src="<?php echo $base_url;?>app/webroot/timthumb.php?src=<?php echo $deal['StoreProduct']['thumbnail'];?>&h=120" data-id="<?php echo $deal['StoreProduct']['id'];?>" class="viewproduct productthumb"> 
7
        <ul class="product_actions list-unstyled">
13672 anikendra 8
          <li data-id="<?php echo $deal['StoreProduct']['id'];?>" class="likedeal <?php if(isset($likedDeals[$deal['StoreProduct']['id']])):?>active<?php endif;?>">
13579 anikendra 9
          </li>
13672 anikendra 10
          <li data-id="<?php echo $deal['StoreProduct']['id'];?>" class="dislikedeal <?php if(isset($disLikedDeals[$deal['StoreProduct']['id']])):?>active<?php endif;?>">                    
13579 anikendra 11
          </li>
12
        </ul>
13
      </div>
14
      <p class="text-center viewproduct" data-id="<?php echo $deal['StoreProduct']['id'];?>"><?php echo  $this->Text->truncate($deal['StoreProduct']['title'],22,array('ellipsis' => '...','exact' => false));?></p>
15
      <?php if(isset($deal['StoreProduct']['tagline'])):?><p class="product_short_description">echo $deal['StoreProduct']['tagline'];?></p><?php endif;?>
16
      <p class="product_prices">
17
        <span class="rupee"></span><span class="product_price"><?php echo $deal['StoreProduct']['available_price'];?></span>
13672 anikendra 18
        <span class="product_cashback"><label>Cashback</label><span class="rupee"></span> <span class="cashback"><?php if(isset($deal['StoreProduct']['cashback']) && !empty($deal['StoreProduct']['cashback'])):?><?php echo $deal['StoreProduct']['cashback'];?> <?php else:?>0<?php endif;?></span></span>
13579 anikendra 19
      </p>          
20
    </div>       
21
  <?php endforeach;?>    
22
  <p class="text-center"><a class="btn btn-primary" href="/categories/getdeals/<?php echo $id;?>/?page=<?php echo ($page+1);?>">Load More</a></p>
23
<?php endif;?>