summaryrefslogtreecommitdiff
path: root/app/Template/board/files.php
blob: 66d5bff95116ceb23ba314a590885654287584fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<section>
    <?php foreach ($files as $file): ?>
		<i class="fa fa-file-o fa-fw"></i>

        <?= Helper\a(
            Helper\escape($file['name']),
            'file',
            'download',
            array('file_id' => $file['id'], 'task_id' => $file['task_id'])
        ) ?>

        <br/>
    <?php endforeach ?>
</section>