File: D:/HostingSpaces/SBogers10/ridderstee.komma.pro/app/storage/views/9ab99c4cc0eaf2353275a0d551291f37
<?php if( $posts->count() != 0 ): ?>
<section class="posts-row">
<div class="grid-row">
<div class="placeholder">
<?php foreach($posts as $post): ?>
<?php /* <?php echo dde($post->images); ?>*/ ?>
<article>
<a href="/<?php echo $post->route->route; ?>">
<figure>
<div class="image-placeholder">
<?php if($post->post->images->count() != 0): ?>
<?php foreach(['large', 'medium'] as $imageSize): ?>
<span class="<?php echo $imageSize; ?>"
style="background-image: url('<?php echo $post->post->images->first()->{$imageSize.'_image_url'}; ?>');"></span>
<?php endforeach; ?>
<?php endif; ?>
</div>
</figure>
<div class="content">
<h3><?php echo $post->name; ?></h3>
<span class="date">
<div class="date-placeholder">
<span class="day"><?php echo $post->post->date->format('d'); ?></span>
<span class="month"><?php echo $post->post->date->format('m'); ?></span>
</div>
</span>
</div>
</a>
</article>
<?php endforeach; ?>
<div class="tablet overview">
<div class="wrapper">
<a href="/<?php echo $links->posts->route; ?>">
<div class="overview-placeholder">
<p><?php echo \Illuminate\Support\Facades\Lang::get('translations.goToOverviewText'); ?></p>
<span class="button">
<?php echo \Illuminate\Support\Facades\Lang::get('translations.allArticles'); ?>
</span>
</div>
</a>
</div>
</div>
</div>
<a href="/<?php echo $links->posts->route; ?>" class="button centered small-button">
<?php echo \Illuminate\Support\Facades\Lang::get('translations.allArticles'); ?>
</a>
</div>
</section>
<?php endif; ?>