aboutsummaryrefslogtreecommitdiff
path: root/templates/courseware/block_types/folder.php
blob: cd7a3a184812ed5cb7033c3afefc2c2707b0847e (plain)
1
2
3
4
5
6
7
8
9
<div style="font-size: 12px;">
    <p style="font-weight: bold;"><?= _('Dateiordner') . ': ' ?></p>
    <? foreach ($files as $file): ?>
        <? if ($file === null) { continue; } ?>
        <p>
            <a href="<?= htmlReady($file->getDownloadURL()); ?>"><?= htmlReady($file->name); ?></a>
        </p>
    <? endforeach; ?>
</div>