Files
lichterei-web/site/templates/home.php
2019-05-28 07:08:32 +02:00

32 lines
722 B
PHP
Executable File

<?php snippet('header') ?>
<main>
<header class="intro">
<h1><?= $site->title() ?></h1>
</header>
<?php if ($photographyPage = page('photography')): ?>
<ul class="grid">
<?php foreach ($photographyPage->children()->listed() as $album): ?>
<li>
<a href="<?= $album->url() ?>">
<figure>
<?php if ($cover = $album->cover()): ?>
<?= $cover->resize(1024, 1024) ?>
<?php endif ?>
<figcaption>
<span>
<span class="example-name"><?= $album->title() ?></span>
</span>
</figcaption>
</figure>
</a>
</li>
<?php endforeach ?>
</ul>
<?php endif ?>
</main>
<?php snippet('footer') ?>