aboutsummaryrefslogtreecommitdiff
path: root/_includes/gallery
diff options
context:
space:
mode:
Diffstat (limited to '_includes/gallery')
-rw-r--r--_includes/gallery51
1 files changed, 51 insertions, 0 deletions
diff --git a/_includes/gallery b/_includes/gallery
new file mode 100644
index 0000000..97022aa
--- /dev/null
+++ b/_includes/gallery
@@ -0,0 +1,51 @@
+{% if include.id %}
+ {% assign gallery = page[include.id] %}
+{% else %}
+ {% assign gallery = page.gallery %}
+{% endif %}
+
+{% if include.layout %}
+ {% assign gallery_layout = include.layout %}
+{% else %}
+ {% if gallery.size == 2 %}
+ {% assign gallery_layout = 'half' %}
+ {% elsif gallery.size >= 3 %}
+ {% assign gallery_layout = 'third' %}
+ {% else %}
+ {% assign gallery_layout = '' %}
+ {% endif %}
+{% endif %}
+
+<figure class="{{ gallery_layout }} {{ include.class }}">
+ {% for img in gallery %}
+ {% if img.url %}
+ <a href=
+ {% if img.url contains "://" %}
+ "{{ img.url }}"
+ {% else %}
+ "{{ img.url | relative_url }}"
+ {% endif %}
+ {% if img.title %}title="{{ img.title }}"{% endif %}
+ >
+ <img src=
+ {% if img.image_path contains "://" %}
+ "{{ img.image_path }}"
+ {% else %}
+ "{{ img.image_path | relative_url }}"
+ {% endif %}
+ alt="{% if img.alt %}{{ img.alt }}{% endif %}">
+ </a>
+ {% else %}
+ <img src=
+ {% if img.image_path contains "://" %}
+ "{{ img.image_path }}"
+ {% else %}
+ "{{ img.image_path | relative_url }}"
+ {% endif %}
+ alt="{% if img.alt %}{{ img.alt }}{% endif %}">
+ {% endif %}
+ {% endfor %}
+ {% if include.caption %}
+ <figcaption>{{ include.caption | markdownify | remove: "<p>" | remove: "</p>" }}</figcaption>
+ {% endif %}
+</figure> \ No newline at end of file