1<?php $this->extends('base.php') ?> 2 3<?php $this->start('body') ?> 4 <?= $this->block('sidebar') ?> 5 6 <?= $this->block('content') ?> 7 8 <?= $this->block('this_block_is_not_set') ?> 9 10 <?= $layoutParameter_1 ?? '' ?> 11 <?= $layoutParameter_2 ?? '' ?> 12 <?= $layoutParameter_3 ?? '' ?> 13 14 <?= $this->block('scripts') ?> 15 16 <?= $this->include('includes/banner.php') ?> 17<?php $this->end('body') ?> 18