diff --git a/sigal/gallery.py b/sigal/gallery.py index 55aefa1..db91a93 100644 --- a/sigal/gallery.py +++ b/sigal/gallery.py @@ -232,7 +232,7 @@ class Gallery(object): if f in imglist: outname = join(outpath, filename) else: - outname = ''.join([os.path.splitext(filename)[0], '.webm']) + outname = os.path.splitext(filename)[0] + '.webm' if os.path.isfile(outname) and not self.force: self.logger.info("%s exists - skipping", filename) diff --git a/sigal/themes/galleria/static/img/empty.png b/sigal/themes/galleria/static/img/empty.png new file mode 100644 index 0000000..9fc626c Binary files /dev/null and b/sigal/themes/galleria/static/img/empty.png differ diff --git a/sigal/themes/galleria/templates/index.html b/sigal/themes/galleria/templates/index.html index 700040d..c16f20f 100644 --- a/sigal/themes/galleria/templates/index.html +++ b/sigal/themes/galleria/templates/index.html @@ -67,8 +67,10 @@ {% endfor %} {% for video in videos %} + {{ video.file }} + data-layer="" /> + {% endfor %} {% endif %}