File: D:/HostingSpaces/SBogers10/topswtw.komma.pro/app/storage/views/99d4b9abca6348cbd607c5c5ff2de26a
<?php $__env->startSection('content'); ?> <div class="products-overview mobile-page"> <?php /*Title*/ ?> <h1><?php echo $entity->name; ?></h1> <?php if(empty($posts)): ?> <article class="text-block"> <p><?php echo Lang::get('pages/posts.no_posts'); ?></p> </article> <?php endif; ?> <section class="c-blog-articles"> <?php foreach($posts as $post): ?> <article class="c-blog-articles__item"> <a class="c-blog-articles__link" href="/<?php echo $entity->route; ?>/<?php echo $post->slug; ?>"> <figure class="c-blog-articles__figure"> <div class="c-blog-articles__image-wrapper"> <?php if(isset($post->medium_image_url)): ?> <span class="c-blog-articles__image" style="background-image: url('<?php echo $post->medium_image_url; ?>');"></span> <?php endif; ?> </div> </figure> <div class="c-blog-articles__content"> <h3 class="c-blog-articles__title"><?php echo $post->name; ?></h3> <div class="c-blog-articles__date"><?php echo \Carbon\Carbon::createFromFormat(\Carbon\Carbon::DEFAULT_TO_STRING_FORMAT, $post->date)->format('d / m / Y'); ?></div> <?php if(!empty($post->meta_description)): ?><div class="c-blog-articles__teaser"><?php echo $post->meta_description; ?></div><?php endif; ?> <span class="c-blog-articles__button btn"> <?php echo \Illuminate\Support\Facades\Lang::get('pages/posts.read_more'); ?> </span> </div> </a> </article> <?php endforeach; ?> <?php if(method_exists($posts, 'links')): ?> <?php echo $posts->links('partials.pagination'); ?> <?php endif; ?> </section> </div> <?php $__env->stopSection(); ?>
<?php echo $__env->make('mobile.master', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>