summaryrefslogtreecommitdiff
path: root/modules/dynamic/views/dynamic_block.html.php
blob: d14c2900f274803def042482d1b26c06f13fd544 (plain)
1
2
3
4
5
6
7
8
9
10
<?php defined("SYSPATH") or die("No direct script access.") ?>
<div class="gDynamicBlock">
  <ul>
  <? foreach ($albums as $album => $text): ?>
  <li>
  <a href="<?= url::site("dynamic/$album") ?>"><?= t($text) ?></a>
  </li>
  <? endforeach ?>
  </ul>
</div>