8 lines
No EOL
287 B
PHP
8 lines
No EOL
287 B
PHP
<ul class="big-links-list">
|
|
<?php foreach($block->items()->toStructure() as $item): ?>
|
|
<li>
|
|
<span class="li_arrow">→</span><span class="li_text"><?= $item->text() ?></span>
|
|
<?php snippet('a', ['url' => $item->link()->toUrl()]) ?>
|
|
</li>
|
|
<?php endforeach ?>
|
|
</ul>
|