gallery.tmpl 975 B

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