annotate montage/templates/strip.html @ 2:4b8aa9b0a45b

montage actually does something now
author k0s <k0scist@gmail.com>
date Fri, 25 Dec 2009 03:59:26 -0500
parents
children 75a57e8f72d4
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2
4b8aa9b0a45b montage actually does something now
k0s <k0scist@gmail.com>
parents:
diff changeset
1 <!DOCTYPE html
4b8aa9b0a45b montage actually does something now
k0s <k0scist@gmail.com>
parents:
diff changeset
2 PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
4b8aa9b0a45b montage actually does something now
k0s <k0scist@gmail.com>
parents:
diff changeset
3 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
4b8aa9b0a45b montage actually does something now
k0s <k0scist@gmail.com>
parents:
diff changeset
4 <html xmlns="http://www.w3.org/1999/xhtml"
4b8aa9b0a45b montage actually does something now
k0s <k0scist@gmail.com>
parents:
diff changeset
5 xmlns:py="http://genshi.edgewall.org/"
4b8aa9b0a45b montage actually does something now
k0s <k0scist@gmail.com>
parents:
diff changeset
6 xmlns:xi="http://www.w3.org/2001/XInclude">
4b8aa9b0a45b montage actually does something now
k0s <k0scist@gmail.com>
parents:
diff changeset
7 <head>
4b8aa9b0a45b montage actually does something now
k0s <k0scist@gmail.com>
parents:
diff changeset
8 </head>
4b8aa9b0a45b montage actually does something now
k0s <k0scist@gmail.com>
parents:
diff changeset
9 <body>
4b8aa9b0a45b montage actually does something now
k0s <k0scist@gmail.com>
parents:
diff changeset
10 <py:for each="index, image in enumerate(files)">
4b8aa9b0a45b montage actually does something now
k0s <k0scist@gmail.com>
parents:
diff changeset
11 <div>
4b8aa9b0a45b montage actually does something now
k0s <k0scist@gmail.com>
parents:
diff changeset
12 <img src="${image['path']}" width="${width or None}" height="${height or None}"/><br/>
4b8aa9b0a45b montage actually does something now
k0s <k0scist@gmail.com>
parents:
diff changeset
13 ${image['description']}
4b8aa9b0a45b montage actually does something now
k0s <k0scist@gmail.com>
parents:
diff changeset
14 </div>
4b8aa9b0a45b montage actually does something now
k0s <k0scist@gmail.com>
parents:
diff changeset
15 <hr py:if="index != len(files) - 1"/>
4b8aa9b0a45b montage actually does something now
k0s <k0scist@gmail.com>
parents:
diff changeset
16 </py:for>
4b8aa9b0a45b montage actually does something now
k0s <k0scist@gmail.com>
parents:
diff changeset
17 </body>
4b8aa9b0a45b montage actually does something now
k0s <k0scist@gmail.com>
parents:
diff changeset
18 </html>