gallery/templates/photo.cs

22 lines
746 B
C#

<html>
<head>
<title><?cs var:gallery.title ?>: <?cs var:photo.name ?></title>
</head>
<body>
<p align="center">
<img
lowsrc="<?cs var:uri ?>/<?cs var:photo.thumbnail ?>"
src="<?cs var:uri ?>/<?cs var:photo.resized ?>"
width="<?cs var:photo.width ?>"
height="<?cs var:photo.height ?>"
alt="<?cs var:photo.annotation ?>" /><br />
<?cs var:photo.name ?>:
<?cs var:photo.annotation ?><br />
<a href="<?cs var:CGI.ScriptName ?>/<?cs var:gallery.name ?>/<?cs var:photo.previous ?>">prev</a> |
<a href="<?cs var:uri ?>/<?cs var:gallery.name ?>/<?cs var:photo.name ?>">original size</a> |
<a href="<?cs var:CGI.ScriptName ?>/<?cs var:gallery.name ?>/<?cs var:photo.next ?>">next</a>
</p>
</body>
</html>