codekasten/fotokiosk/fotokiste/templates/start.kid
2008-08-23 12:31:08 +00:00

87 lines
4.2 KiB
Genshi

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:py="http://purl.org/kid/ns#"
py:extends="'master.kid'">
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" py:replace="''"/>
<title>Willkommen in der Fotokiste!</title>
<script type="text/javascript" src="../static/javascript/mjp-streamer.js"
py:attrs="src=tg.url('/static/javascript/mjp-streamer.js')" />
<title>Bild versenden</title>
</head>
<body onload="createImageLayer();">
<table>
<tr>
<td>
<div id="live_pic"><noscript><img width="400" height="320"
src="../static/images/fotokiste-default.jpg"
py:attrs="src=video_url"/></noscript></div>
<div id="default_pic"><img width="400" height="320"
src="../static/images/fotokiste-default.jpg" /></div>
</td>
<td valign="center">
<form action="${tg.url('/mailtext')}" method="post">
<input class="button" type="submit" value="Bild senden" />
</form>
</td>
</tr>
</table>
<div id="gallery">
<!-- see http://www.kid-templating.org/trac/wiki/GenerateTableFromListRecipe -->
<?python i= iter(gallery); rows= map(None, i, i, i, i, i, i, i, i, i, i, i) ?>
<table>
<tr>
<td><img class="gallery" src="../static/images/platzhalter.jpg"
alt="${gallery[0].title}"
py:attrs="src=tg.url('static/gallery/') + gallery[0].url" /></td>
<td><img class="gallery" src="../static/images/platzhalter.jpg"
alt="${gallery[1].title}"
py:attrs="src=tg.url('static/gallery/') + gallery[1].url" /></td>
<td><img class="gallery" src="../static/images/platzhalter.jpg"
alt="${gallery[2].title}"
py:attrs="src=tg.url('static/gallery/') + gallery[2].url" /></td>
<td><img class="gallery" src="../static/images/platzhalter.jpg"
alt="${gallery[3].title}"
py:attrs="src=tg.url('static/gallery/') + gallery[3].url" /></td>
<td><img class="gallery" src="../static/images/platzhalter.jpg"
alt="${gallery[4].title}"
py:attrs="src=tg.url('static/gallery/') + gallery[4].url" /></td>
<td><img class="gallery" src="../static/images/platzhalter.jpg"
alt="${gallery[5].title}"
py:attrs="src=tg.url('static/gallery/') + gallery[5].url" /></td>
<td><img class="gallery" src="../static/images/platzhalter.jpg"
alt="${gallery[6].title}"
py:attrs="src=tg.url('static/gallery/') + gallery[6].url" /></td>
<td><img class="gallery" src="../static/images/platzhalter.jpg"
alt="${gallery[7].title}"
py:attrs="src=tg.url('static/gallery/') + gallery[7].url" /></td>
</tr>
<tr>
<td><img class="gallery" src="../static/images/platzhalter.jpg"
alt="${gallery[8].title}"
py:attrs="src=tg.url('static/gallery/') + gallery[8].url" /></td>
<td><img class="gallery" src="../static/images/platzhalter.jpg"
alt="${gallery[9].title}"
py:attrs="src=tg.url('static/gallery/') + gallery[9].url" /></td>
<td colspan="4">
<img src="${tg.url('/static/images/logo.png')}" alt="Sense.Lab e.V." /></td>
<td><img class="gallery" src="../static/images/platzhalter.jpg"
alt="${gallery[10].title}"
py:attrs="src=tg.url('static/gallery/') + gallery[10].url" /></td>
<td><img class="gallery" src="../static/images/platzhalter.jpg"
alt="${gallery[11].title}"
py:attrs="src=tg.url('static/gallery/') + gallery[11].url" /></td>
</tr>
</table>
</div>
<div id="footer">
<p>
Die Fotokiste ist ein sense.lab-Projekt und ein Modul der Glasmensch-Ausstellung.<br/>
Alle Inhalte k&ouml;nnen im Sinne einer Creative Commons Lizenz (BY-SA) beliebig weiter verwendet werden.
</p>
</div>
</body>
</html>