You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
682 B
PHP
24 lines
682 B
PHP
<?php snippet('header') ?>
|
|
|
|
<main>
|
|
<?php foreach($page->children() as $list): ?>
|
|
<h2><?= $list->title() ?></h2>
|
|
<ul class="linklist<?php if($list->featured()->bool()): ?> linklist--featured<?php endif ?>">
|
|
<?php foreach($list->links()->toStructure() as $link): ?>
|
|
<li>
|
|
<a href="<?= $link->link() ?>">
|
|
<img src="<?= $link->image()->toFile()->url() ?>" alt="<?= $link->title()->html() ?>">
|
|
</a>
|
|
<?= $link->desc()->html() ?>
|
|
|
|
<?php if($link->subtitle()->isNotEmpty()): ?>
|
|
<small><?= $link->subtitle() ?></small>
|
|
<?php endif ?>
|
|
</li>
|
|
<?php endforeach ?>
|
|
</ul>
|
|
<?php endforeach ?>
|
|
</main>
|
|
|
|
<?php snippet('footer') ?>
|