Subversion Repositories SmartDukaan

Rev

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

<!-- main col right -->
<div class="col-sm-7">
<?php if(!empty($data)):?>
        <?php foreach($data AS $content):?>
        <?php if(!empty($content['Song'])):?>
       <div class="panel panel-default">
         <div class="panel-heading"><a 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-8"><?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;?>
        </ul>
        <?php endif;?>
          </div>
       </div>
        <?php endif;?>
        <?php endforeach;?>
<?php endif;?>
</div>