HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers10/komma.pro/resources/views/site/pages/posts/category.blade.php
@extends('site.master')

@section('title', $category->translation->meta_title)
@section('description', $category->translation->meta_description)

@section('content')

    {{-- Header with large image --}}
    <header class="main">

        @include('site.partials.posts.postHeaderIndex',[
            'post' => $category->posts->first()
        ])

        {{-- Drips around header --}}
        @include('site.partials.headerDrips')

    </header>

    {{-- Related posts --}}
    <section class="contained-layout">

        <div class="related-posts col-10 centered">

            <a class="back-to-grid" href="/blog">Terug naar overzicht</a>

            <h2>{!! $category->translation->name !!}</h2>

            <div class="featured post-grid">

                @foreach( $category->posts as $post)

                    @include('site.partials.posts.postThumb',[
                        'post' => $post,
                    ])

                @endforeach

            </div>

        </div>

    </section>

@endsection