blob: 29b1a3848c19b0578378897d7fc31ba78ed0a69c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
cat <<END
<div class="text">
<a href="${num}-$((i-1)).html">⇐</a>
<a href="page-${num}.html#$photo">Thumbnails</a>
<a href="${num}-$((i+1)).html">⇒</a>
</div>
<div class='view'>
<a href="${num}-$((i+1)).html">
<img class='view ${animation_class}' border='0' src='${backhref}/${photos_dir}/${photo}' />
</a>
</div>
END
if [ "${ORIGINAL_BASEPATH}x" != x ]; then
cat <<END
<p>
<a href="${ORIGINAL_BASEPATH}/${photo}">Original</a>
</p>
END
fi
|