blob: e4eab27a322f983cada351b92b9c9012594ca2b4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
## -*- coding: utf-8 -*-
<%inherit file="base.tmpl"/>
<%namespace name="comments" file="comments_helper.tmpl"/>
<%namespace name="ui" file="crumbs.tmpl" import="bar"/>
<%block name="sourcelink"></%block>
<%block name="content">
${ui.bar(crumbs)}
%if title:
<h1>${title}</h1>
%endif
%if text:
<p>
${text}
</p>
%endif
<ul>
% for folder, ftitle in folders:
<li><a href="${folder}"><i
class="icon-folder-open"></i> ${ftitle}</a></li>
% endfor
</ul>
<ul class="thumbnails">
%for image in photo_array:
<li><a href="${image['url']}" class="thumbnail image-reference" title="${image['title']}">
<img src="${image['url_thumb']}" alt="${image['title']}" /></a>
%endfor
</ul>
%if enable_comments:
${comments.comment_form(None, permalink, title)}
%endif
</%block>
|