Subversion Repositories SmartDukaan

Rev

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

<!-- main col left --> 
<div class="col-sm-5">
<?php if(!empty($data)):?>
<?php foreach($data AS $content):?>
        <?php if(!empty($content['Song'])):?>
      <div class="post panel panel-default">
         <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>
          <div class="panel-body">
            <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>-->
            <p class="col-sm-6"><?php echo $content['Album']['description'];?></p>
            <div class="clearfix"></div>
        <?php if(!empty($content['Song'])):?>
            <hr>
            <ul class="list-unstyled">
                <?php foreach($content['Song'] AS $song):?>
                <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>
                <?php endforeach;?>
        <?php endif;?>
          </div>
      </div>
        <?php endif;?>
        <?php endforeach;?>
<?php endif;?>
</div>