aboutsummaryrefslogtreecommitdiff
path: root/templates/courseware/block_types/gallery.php
blob: dff14c6bb2406e26ee446ff638fa2b8b2b06fe8d (plain)
1
2
3
4
5
6
7
<? foreach ($files as $file): ?>
    <? if ($file === null) { continue; } ?>
    <p>
        <img src="<?= htmlReady($file->getDownloadURL()); ?>">
        <span style="font-style: italic; font-size: 0.75em"><?= htmlReady($file->name); ?></span>
    </p>
<? endforeach; ?>