Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
15403 manish.sha 1
<!-- main col left --> 
2
<div class="col-sm-5">
3
<?php if(!empty($data)):?>
4
<?php foreach($data AS $content):?>
5
	<?php if(!empty($content['Song'])):?>
6
      <div class="post panel panel-default">
7
	 <div class="panel-heading"><a title="Songs of <?php echo $content['Album']['name'];?>" href="/album/<?php echo $content['Album']['slug'];?>"><h3><?php echo $content['Album']['name'];?></h3></a></div>
8
	  <div class="panel-body">
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":$content['Album']['img'];?>&w=150&h=150" class="img-circle pull-right"> <!--<a href="#">Free @Bootply</a>-->
10
	    <p class="col-sm-6"><?php echo $content['Album']['description'];?></p>
11
	    <div class="clearfix"></div>
12
	<?php if(!empty($content['Song'])):?>
13
	    <hr>
14
	    <ul class="list-unstyled">
15
		<?php foreach($content['Song'] AS $song):?>
16
		<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>
17
		<?php endforeach;?>
18
	<?php endif;?>
19
	  </div>
20
      </div>
21
	<?php endif;?>
22
	<?php endforeach;?>
23
<?php endif;?>
24
</div>