summary refs log tree commit diff stats
path: root/templates/gallery.crotmp
blob: 2afe7e958a4c32f43a0e2c29040ea4f7ffb1eb2a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<:use 'templates/base.crotmp'>
<|page(.title)>
<div class="gallery">
    <@gallery : $i>

    <?{ $i.<type> eq 'img' }>
    <img src="<$i.<src>>" loading="lazy">
    </?>

    <?{ $i.<type> eq 'text' }>
    <div class="text">
        <$i.<text>>
    </div>
    </?>

    <?{ $i.<type> eq 'heading' }>
    <h1 class="heading"><$i.<text>></h1>
    </?>

    </@>
</div>
</|>