You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.2 KiB
45 lines
1.2 KiB
4 years ago
|
<div class="row">
|
||
|
<?php $size = $this->sideContent ? '8' : '12'; ?>
|
||
|
<div class="col-12 col-md-<?= $size; ?> col-lg-<?= $size; ?>">
|
||
|
<?php foreach ($this->contents as $key => $content) { ?>
|
||
|
<?php if ($content['type'] == '1') { ?>
|
||
|
|
||
|
<div class="<?= !$content['hide_background'] ? 'content shadow p-4' : ''; ?> mb-4">
|
||
|
<?php if ($key === array_key_first($this->contents)) { ?>
|
||
|
<?= $this->partial('../app/views/partials/message.php'); ?>
|
||
|
<?php } ?>
|
||
|
|
||
|
<?php if ($content['hide_title'] == 0) { ?>
|
||
|
<h1><?= ($this->escape)($content['title']); ?></h1>
|
||
|
<?php } ?>
|
||
|
<?= $content['content']; ?>
|
||
|
|
||
|
<?php if ($this->injectView != '') { ?>
|
||
|
<?= $this->partial($this->injectView); ?>
|
||
|
<?php } ?>
|
||
|
|
||
|
<?php if ($key === array_key_last($this->contents)) { ?>
|
||
|
<div class="pb-5"></div>
|
||
|
<?php } ?>
|
||
|
</div>
|
||
|
|
||
|
<?php } ?>
|
||
|
<?php } ?>
|
||
|
</div>
|
||
|
|
||
|
<?php if ($this->sideContent) { ?>
|
||
|
<div class="col-8 col-md-4 col-lg-4">
|
||
|
<?php foreach ($this->contents as $content) { ?>
|
||
|
<?php if ($content['type'] == '2') { ?>
|
||
|
|
||
|
<div class="content content-side shadow p-3 mb-4">
|
||
|
<h3><?= ($this->escape)($content['title']); ?></h3>
|
||
|
<?= $content['content']; ?>
|
||
|
</div>
|
||
|
|
||
|
<?php } ?>
|
||
|
<?php } ?>
|
||
|
</div>
|
||
|
<?php } ?>
|
||
|
</div>
|