Sid Gifari File Manager
🏠 Root
/
home
/
genremedia08
/
musicjukebox.overlookedtracks.com
/
storage
/
framework
/
views
/
Editing: a370f088edb591a4b3bce030120bef2483480b1f.php
<?php /** @var App\Services\Meta\MetaTags $meta */ ?> <?php $__env->startSection('body'); ?> <h1 class="title"><?php echo e($meta->getTitle()); ?></h1> <?php echo $meta->getDescription(); ?> <img src="<?php echo e($meta->get('og:image')); ?>"> <ul> <?php $__currentLoopData = $meta->getData('artist.genres'); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $genre): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <li><a href="<?php echo e($meta->urls->genre($genre)); ?>"><?php echo e($genre['name']); ?></a></li> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </ul> <?php $__currentLoopData = $meta->getData('albums'); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $album): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <h3><a href="<?php echo e($meta->urls->album($album)); ?>"><?php echo e($album['name']); ?></a> - <?php echo e($album['release_date']); ?></h3> <ul> <?php $__currentLoopData = $album['tracks']; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $track): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <li><a href="<?php echo e($meta->urls->track($track)); ?>"><?php echo e($track['name']); ?> - <?php echo e($album['name']); ?> - <?php echo e($meta->getData('artist.name')); ?></a></li> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </ul> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> <?php if($meta->getData('artist.similar')): ?> <h2>Similar Artists</h2> <?php $__currentLoopData = $meta->getData('artist.similar'); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $similarArtist): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <h3><a href="<?php echo e($meta->urls->artist($similarArtist)); ?>"><?php echo e($similarArtist['name']); ?></a></h3> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> <?php endif; ?> <?php $__env->stopSection(); ?> <?php echo $__env->make('common::prerender.base', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/genremedia08/musicjukebox.overlookedtracks.com/resources/views/prerender/artist/show.blade.php ENDPATH**/ ?>
Save
Cancel