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

fix up templates
author k0s <k0scist@gmail.com>
date Fri, 25 Dec 2009 18:56:23 -0500
parents d60a5ffbf4f4
children 6a33dc59e4a6
line wrap: on
line diff
--- a/montage/templates/grid.html	Fri Dec 25 18:27:45 2009 -0500
+++ b/montage/templates/grid.html	Fri Dec 25 18:56:23 2009 -0500
@@ -6,14 +6,20 @@
       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>
-    <table>
+    <table class="image">
       <tr py:for="row in range(len(files)/columns)">
         <td py:for="col in range(columns)" py:with="image = files[row*columns + col]">
           <center>
-            <img src="${image['path']}" width="${width or None}" height="${height or None}"/><br/>
+            <a href="${image['link']}">
+               <img src="${image['path']}" width="${width or None}" height="${height or None}"/>
+            </a>
+          <br/>
             ${image.get('title', image['description'])}            
           </center>
         </td>