diff montage/templates/strip.html @ 9:33349e5178b3

fix up templates
author k0s <k0scist@gmail.com>
date Fri, 25 Dec 2009 18:56:23 -0500
parents d60a5ffbf4f4
children 17ccb1022656
line wrap: on
line diff
--- a/montage/templates/strip.html	Fri Dec 25 18:27:45 2009 -0500
+++ b/montage/templates/strip.html	Fri Dec 25 18:56:23 2009 -0500
@@ -6,10 +6,14 @@
       xmlns:xi="http://www.w3.org/2001/XInclude">
   <head>
     <title>${title or path}</title>
+    <link py:for="sheet in stylesheets" rel="stylesheet" type="text/css" href="${sheet}"/>
   </head>
   <body>
+    <xi:include py:if="include" href="${include}"/>
+
+    <center>
     <py:for each="index, image in enumerate(files)">
-      <div>
+      <div class="image">
         <a href="${image['link']}">
           <img src="${image['path']}" width="${width or None}" height="${height or None}"/>
         </a>
@@ -18,5 +22,6 @@
       </div>
       <hr width="${width}px" py:if="index != len(files) - 1"/>
     </py:for>
+    </center>
   </body>
 </html>