{{-- Page content --}}
@if (!empty($page->body))
@foreach (preg_split("/(<[^>]*>)/", $page->body, -1, PREG_SPLIT_DELIM_CAPTURE | PREG_SPLIT_NO_EMPTY) as $part)
@if (strpos($part, '<') === 0)
{!! __($part) !!}
@else
{{ __($part) }}
@endif
@endforeach
@endif
{{-- Footer --}}
@include('website.classic.includes.footer')
@endsection