diff --git a/_blog/example-gallery.md b/_blog/example-gallery.md
new file mode 100644
index 0000000..038a8ea
--- /dev/null
+++ b/_blog/example-gallery.md
@@ -0,0 +1,10 @@
+---
+title: Photo gallery example
+layout: gallery
+date: 2019-07-24
+tags: example gallery deleteme
+---
+
+PATH: {{ page.path }}
+
+PATH: {{ page.id }}
diff --git a/_includes/gallery.html b/_includes/gallery.html
new file mode 100644
index 0000000..ccbb67c
--- /dev/null
+++ b/_includes/gallery.html
@@ -0,0 +1,8 @@
+{% assign images = (include.images | split: "|") %}
+{% assign thumbnails = (include.thumbnails | split: "|") %}
+
+
+ {% for image in images %}
+
+ {% endfor %}
+
\ No newline at end of file
diff --git a/_includes/image.html b/_includes/image.html
index 32fd161..7c0779e 100644
--- a/_includes/image.html
+++ b/_includes/image.html
@@ -11,9 +11,16 @@
{% capture alt %}alt="{{ alt }}" title="{{ alt }}"{% endcapture %}
{% endif %}
-{% assign frame=include.frame | default: true %}
+{% assign frame=include.frame %}
+{% if frame == blank %}
+ {% assign frame=true %}
+{% endif %}
-