24 lines
817 B
PHP
24 lines
817 B
PHP
|
|
<?php if ($aboutPage = $site->aboutPage()->toPage()): ?>
|
||
|
|
|
||
|
|
<div id="about-logo">
|
||
|
|
<svg><use xlink:href="<?= url('assets/images/svg-sprite.svg') ?>#logo" /></svg>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div id="about-text"><?= $aboutPage->text()->kt() ?></div>
|
||
|
|
|
||
|
|
<div id="about-socials">
|
||
|
|
<?php if ($aboutPage->socials()->isNotEmpty()): ?>
|
||
|
|
<?php foreach ($aboutPage->socials()->toStructure() as $key => $item): ?>
|
||
|
|
<a class="row uppercase link-hover black" href="<?= $item->url() ?>"><?= $item->title()->html() ?></a>
|
||
|
|
<?php endforeach ?>
|
||
|
|
<?php endif ?>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div id="about-contact"><?= $aboutPage->contact()->kt() ?><div id="about-address"><?= $aboutPage->address()->kt() ?></div></div>
|
||
|
|
|
||
|
|
<?php snippet('newsletter') ?>
|
||
|
|
|
||
|
|
<div id="credits">© <?= date('Y').' '.$site->title()->html() ?> — All rights reserved</div>
|
||
|
|
|
||
|
|
<?php endif ?>
|