<?php $__env->startSection('meta-content'); ?>
	<meta name="twitter:card" value="photo"/>
	<meta name="twitter:site" value="<?php echo '@'.$settings->twitter_page_id; ?>"/>
	<meta name="twitter:image" value="<?php echo URL::asset('assets/images/logo.png'); ?>"/>
	<meta property="og:type" content="blog"/>
	<meta property="og:site_name" content="<?php echo $settings->website_name; ?>"/>
	<meta property="og:url" content="<?php echo URL::to('/'); ?>"/>
	<meta property="og:title" content="<?php echo $settings->website_name; ?> - <?php echo $settings->website_title; ?>"/>
	<meta property="og:image" content="<?php echo URL::asset('assets/images/logo.png'); ?>"/>
	<meta property="og:description" content="<?php echo $settings->website_name; ?> <?php echo $settings->website_description; ?>"/>
	<title><?php echo $settings->website_name; ?> - <?php echo $settings->website_title; ?></title>
<?php $__env->stopSection(); ?>

<?php $__env->startSection('content'); ?>
	<?php foreach($songs as $song): ?>
    	<div class="col-lg-2 col-md-3 col-sm-4 col-xs-4" style="padding:0; margin:15px 0">
        	<div class="album">
            	<a class="pjax" title="<?php echo $song['title']; ?>" href="<?php echo URL::to('search/'.htmlspecialchars($song['title'])); ?>"><img width="170px" height="170px" src="<?php echo $song['image']; ?>" alt="<?php echo $song['title']; ?>"></a>
            	<div class="album-info">
            		<a class="album-title pjax" title="<?php echo htmlspecialchars($song['title']); ?>" href="<?php echo URL::to('search/'.htmlspecialchars($song['title'])); ?>"><?php echo htmlspecialchars($song['title']); ?></a>
            		<a class="album-artist pjax" title="<?php echo htmlspecialchars($song['artist']); ?>" href="<?php echo URL::to('search/'.htmlspecialchars($song['artist'])); ?>"><?php echo htmlspecialchars($song['artist']); ?></a>
            		<div class="clearfix"></div>
            	</div>
           	</div>
        </div>
    <?php endforeach; ?>
    <div class="clearfix"></div>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('index', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>