Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 

14 rader
490 B

  1. <?php $this->extend('block_searchable'); ?>
  2. <?php $this->block('content'); ?>
  3. <ul>
  4. <?php foreach ($this->files as $file): ?>
  5. <li class="download-element ext-<?= $file['extension'] ?>">
  6. <a href="<?= $file['href'] ?>" title="<?= $file['title'] ?>" type="<?= $file['mime'] ?>"><?= $file['link'] ?> <span class="size">(<?= $file['filesize'] ?>)</span><i class="download-icon"></i></a>
  7. </li>
  8. <?php endforeach; ?>
  9. </ul>
  10. <?php $this->endblock(); ?>