Subversion Repositories SmartDukaan

Rev

Rev 13532 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
13532 anikendra 1
<!-- main col right -->
2
<div class="col-sm-7">
3
<?php if(!empty($data)):?>
4
	<?php foreach($data AS $content):?>
5
	<?php if(!empty($content['Song'])):?>
6
       <div class="panel panel-default">
7
	 <div class="panel-heading"><a href="/album/<?php echo $content['Album']['slug'];?>"><h3><?php echo $content['Album']['name'];?></h3></a></div>
8
	  <div class="panel-body">
17760 amit.gupta 9
	    <img alt="Download songs of <?php echo $content['Album']['name'];?>" src="<?php echo $base_url;?>timthumb.php?src=<?php echo (strpos($content['Album']['img'],'noimage')>0)?"/img/noimage.png":urlencode ($content['Album']['img']);?>&w=150&h=150" class="img-circle pull-right"> <!--<a href="#">Free @Bootply</a>-->
13532 anikendra 10
	    <p class="col-sm-8"><?php echo $content['Album']['description'];?></p>
11
	    <div class="clearfix"></div>
12
 
13
        <?php if(!empty($content['Song'])):?>
14
	  <hr>	
15
	<ul class="list-unstyled">
16
		<?php foreach($content['Song'] AS $song):?>
17
                <li><a title="Download songs of <?php echo $content['Album']['name'];?>" target="_blank" href="<?php echo file_get_contents("http://api.adf.ly/api.php?key=c7bd4b62909f298f860e5e805caf367d&uid=6340984&advert_type=banner&domain=adf.ly&url=".urlencode($song['url']));?>"><?php echo $song['name'];?></a></li>
18
                <?php endforeach;?>
19
	</ul>
20
	<?php endif;?>
21
	  </div>
22
       </div>
23
	<?php endif;?>
24
	<?php endforeach;?>
25
<?php endif;?>
26
</div>