decor-6-site/site/snippets/logo.php

13 lines
388 B
PHP
Raw Permalink Normal View History

2026-01-05 19:33:15 +01:00
<div class="site__logo col-xs-6 col-sm-3 col-md-4 col-lg-5 col-xl-6 row">
<?php if($logo = $site->logo()->toFile()):?>
<a href="<?= $site->url() ?>" title="<?= $site->title()?>">
<figure>
<?= $logo?>
</figure>
</a>
<?php endif;?>
<h1 class="header__title">
<a href="<?= $site->url() ?>" title="<?= $site->title()?>">
<?= $site->title()->html()?>
</a></h1>
</div>