25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 

14 satır
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(); ?>