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/SBogers96/smilefotografie.nl/app/views/layouts/pages/albumsSmall.blade.php
@extends('layouts.master')

@section('header')

    <div class="grid-container">

        <div class="intro-title">
            {{ $page->name }}
        </div>

        <div class="intro-text">
            {{ $page->description }}
        </div>

    </div>

@stop

@section('content')

    {{-- Check for filter --}}

    @if(has_filter($page->code_name))

        @include('layouts.partials.albumFilter')

    @endif


    <div class="grid-container">

        {{-- Show overview --}}

        <ul class="albums-holder overview-small">

        @if($albums)

            @foreach($albums as $key => $album)

                <li class="ratio">
                    @include('layouts.partials.callToActionImage',[
                    'name' => $album->name,
                        'route' => $album->route,
                        'thumb' => $album->small_image_url
                    ])

                </li>

            @endforeach

        @endif

        </ul>

    </div>

    {{-- Show call to action bar --}}

    @include('layouts.partials.callToActionBar')

    {{-- Show other album types --}}

    @include('layouts.partials.otherAlbumPages')

@stop