gallery/templates/index.cs

19 lines
654 B
C#

<?cs def:html_head() ?>
<title><?cs var:CGI.ServerName ?> Galleries</title>
<?cs /def ?>
<?cs def:html_body() ?>
<h1 align="center"><?cs var:CGI.ServerName ?> Galleries</h1>
<?cs if:galleries > 0 ?>
<?cs each:g = gallery ?>
<div style="border: 1px solid #ccc; display: block;">
<h2><a style="display: block; text-align: center; padding: 0.5em;"
href="<?cs var:CGI.ScriptName ?>/<?cs var:g.name ?>?<?cs
var:CGI.QueryString ?>"><?cs var:g.title ?></a></h2>
<p style="padding-left: 1em; padding-right: 1em; text-align: center;"><?cs var:g.desc ?></p>
</div>
<div style="height: 1em;"></div>
<?cs /each ?>
<?cs /if ?>
<?cs /def ?>