@extends('frontend.themes.basic.layouts.app') @section('content') @include('frontend.themes.basic.partials.header', ['title' => $page->title])
@if ($ad = ad('mailbox_top'))
{!! $ad !!}
@endif
{!! $page->content !!}
@if ($ad = ad('mailbox_bottom'))
{!! $ad !!}
@endif
@foreach (getSections() as $section) @if ($section->type == 'theme' && in_array($section->name, ['features', 'get_in_touch'])) @include('frontend.themes.basic.sections.' . $section->name) @endif @endforeach @endsection