Initial commit

This commit is contained in:
sarahgarcin1 2026-01-05 19:33:15 +01:00
commit 388079e6bb
1108 changed files with 330121 additions and 0 deletions

13
site/snippets/logo.php Normal file
View file

@ -0,0 +1,13 @@
<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>