summaryrefslogtreecommitdiff
path: root/templates/pages/screenshots.mako
diff options
context:
space:
mode:
Diffstat (limited to 'templates/pages/screenshots.mako')
-rw-r--r--templates/pages/screenshots.mako13
1 files changed, 6 insertions, 7 deletions
diff --git a/templates/pages/screenshots.mako b/templates/pages/screenshots.mako
index ba6f697..e3083ef 100644
--- a/templates/pages/screenshots.mako
+++ b/templates/pages/screenshots.mako
@@ -12,7 +12,7 @@
hs.graphicsDir = ${"/static/images/highslide/" | url};
hs.align = 'center';
hs.showCredits = false;
- hs.captionEval = 'this.thumb.alt';
+ hs.captionEval = 'this.thumb.title';
hs.outlineType = 'outer-glow';
hs.wrapperClassName = 'outer-glow';
hs.fullExpandOpacity = 0.5;
@@ -21,12 +21,11 @@
<link href=${"/static/css/highslide.css" | url} rel="stylesheet" type="text/css" />
</%def>
-
-<p>
- % for f,t,d in h.getImages("static/images/screens/", "static/images/tmp/", (150,150)):
- <% if not d: d = 'Portato screenie' %>
+<div style="position:relative">
+ % for (f,t,d),i in h.it.izip(h.getImages("static/images/screens/", "static/images/tmp/", (150,150)), h.it.count()):
<a href=${f} class="highslide" rel="highslide">
- <img src=${t} alt="${d}" title="${d}" />
+ <img style='position: absolute; top: ${i / 3 * 180 + 20}px; left: ${ (i % 3) * 180 + 61.5 }px;' src=${t} title="${d if d else 'Portato Screenie'}" alt ="Screenshot" />
</a>
% endfor
-</a>
+ <div style = 'height: ${i / 3 * 180 + 180}px;'><!-- Occupy some space --></div>
+</div>