您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

14 行
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(); ?>