@extends('layouts/sidebar') @section('title') @if($title) {{$title}} - Nieuws @endif @endsection @section('breadcrumb') @if($title) @endif @endsection @section('content') {{-- Nieuws komt met 15 berichten per pagina. Deel op in 3 x 2-breed + 3 x 3-breed --}} @foreach(array_slice($news, 0, 6) as $item) @if($loop->index % 2 == 0)
@endif
@if($loop->index % 2 == 1)
@endif @endforeach
@include('partial/newslist_small', ['news' => array_slice($news, 6, count($news))])
@if(count($news) >= 15)
@endif @endsection @push('scripts') @endpush