<?php $this->extend('block_searchable'); ?>
<?php $this->block('content'); ?>
<ul>
<?php foreach ($this->files as $file): ?>
<li><img src="<?= $file['icon'] ?>" width="18" height="18" alt="" class="mime_icon" /> <a href="<?= $file['href'] ?>" title="<?= $file['title'] ?>"><?= $file['link'] ?> <span class="size">(<?= $file['filesize'] ?>)</span></a></li>
<?php endforeach; ?>
</ul>
<?php $this->endblock(); ?>