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