blob: 6aead7335f500ffc0c2e496aca6a177d49adf8e5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<:use 'templates/base.crotmp'>
<|page(.title)>
<div id="loading">
<label for="loading-progress">Loading Images:</label>
<progress id="loading-progress" max="100" value="0"></progress>
</div>
<div id="loading-error" class="alert" role="alert">
<span id="loading-error-text"></span>
<button id="loading-error-dismiss">Dismiss</button>
</div>
<div id="gallery">
<@gallery : $i>
<?{ $i.<type> eq 'img' }>
<img alt="<$i.<alt>>" 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>
<script type="text/javascript" src="/resources/js/bricks.js"></script>
<script type="text/javascript" src="/resources/js/gallery.js"></script>
</|>
|