gallery/templates/gallery.cs

34 lines
891 B
C#

<?cs def:html_head() ?>
<style type="text/css">
body {
margin-top: 240px;
}
</style>
<title>Gallery: <?cs var:gallery.title ?></title>
<?cs /def ?>
<?cs def:html_body() ?>
<table width="100%" class="controls">
<tr>
<td class="status"><a class="button" accesskey="i" href="<?cs var:CGI.ScriptName ?>" target="_top"><img alt="Index" src="/images/top.png" border="0" align="absmiddle" /></a></td>
</tr>
<tr>
<td class="status" colspan="7">
<h1 align="center"><?cs var:gallery.title ?></h1>
<p align="center"><?cs var:gallery.desc ?></p>
</td>
</tr>
</table>
<p align="center">
<?cs if:photos > 0 ?>
<?cs each:p = photo ?>
<a href="<?cs var:CGI.ScriptName ?>/<?cs var:gallery.name ?>/<?cs var:p.name ?>">
<img src="<?cs var:uri ?>/<?cs var:p.thumbnail ?>"
alt="<?cs var:html_strip(p.annotation) ?>" />
</a>
<?cs /each ?>
<?cs /if ?>
</p>
<?cs /def ?>