@extends('templates._with_sidebar') @section('html.head.title', $item->title . ' -') @section('top') @unless($item->is_active) @include('atoms.banner_not_active') @endunless @endsection @section('beforeMain') @include('sections.banner', ['background' => '', 'space_class'=>'xlg-pt4 pt3 pb3']) @if(!empty($item->getBreadcrumbs())) @include('atoms.breadcrumbs', ['breadcrumbs' => $item->getBreadcrumbs()]) @endif @include('atoms.heading_group', [ 'title' => $item->title, 'copy' => $item->summary ]) @include('atoms.banner_details', [ 'date' => $item->updated_at->format('j M Y'), 'ask_question' => true, 'printable' => true, 'downloadable' => true, 'download_title' => $item->title ]) @include('sections.banner_resources') @include('sections.banner_CLOSE') @endsection @section('main') {!! parseCollapsables($item->page_content) !!} @if(isset($area_groups) && count($area_groups) > 0)

Index

@foreach( $area_groups as $group )
@foreach( $group as $key => $groupItem )

{{ $groupItem->title }}

{{ $groupItem->summary }}

@if($key % 2)
@endif @endforeach
@endforeach
@endif @endsection @section('sidebar') @include('sections.resource_sidebar', $primary_web_page = $item) @include('sections.related', ['related' => $item->related_content]) @endsection @section('afterMain') @endsection