Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Rename and add missing template file.
  • Loading branch information
Roberto Alsina committed May 5, 2017
1 parent f4cec0d commit 06e9713
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 2 deletions.
2 changes: 1 addition & 1 deletion v7/gallery_directive/README.md
Expand Up @@ -16,7 +16,7 @@ with the bootstrap-based themes
gallery in bootstrap, either.

* It will look bad in most other themes. But you can customize it by
creating your own gallery_fancy.tmpl. Here's the one that comes with
creating your own gallery_directive.tmpl. Here's the one that comes with
the plugin for inspiration:

```html
Expand Down
2 changes: 1 addition & 1 deletion v7/gallery_directive/gallery_directive.py
Expand Up @@ -91,7 +91,7 @@ def run(self):
context.update(self.site.GLOBAL_CONTEXT)
context.update(kw)
output = self.site.template_system.render_template(
'gallery_fancy.tmpl',
'gallery_directive.tmpl',
None,
context
)
Expand Down
24 changes: 24 additions & 0 deletions v7/gallery_directive/templates/mako/gallery_directive.tmpl
@@ -0,0 +1,24 @@
## -*- coding: utf-8 -*-

%if post:
<p>
${post.text()}
</p>
%endif

<div id="gallery_container"></div>
%if photo_array:
<div class="row">
%for image in photo_array:
<div class="col-xs-6 col-md-3">
<a href="${image['url']}" class="thumbnail image-reference" title="${image['title']|h}">
<img src="${image['url_thumb']}" alt="${image['title']|h}" />
</a>
</div>
%endfor
</div>

<ul class="thumbnails">
<li>
</ul>
%endif

0 comments on commit 06e9713

Please sign in to comment.