Sha256: bf182685f10aba8dfe151370a96b975a76ae6b7845cc4f52efa2a17b07cb3fb9

Contents?: true

Size: 1.32 KB

Versions: 9

Compression:

Stored size: 1.32 KB

Contents

{% if include.id %}
  {% assign gallery = page.[include.id] %}
{% else %}
  {% assign gallery = page.gallery %}
{% endif %}

{% if gallery.size == 2 %}
  {% assign gallery_layout = 'half' %}
{% elsif gallery.size >= 3 %}
  {% assign gallery_layout = 'third' %}
{% else %}
  {% assign gallery_layout = '' %}
{% 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 | absolute_url }}"
        {% endif %}
        {% if img.title %}title="{{ img.title }}"{% endif %}
      >
        <img src=
          {% if img.image_path contains "://" %}
            "{{ img.image_path }}"
          {% else %}
            "{{ img.image_path | absolute_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 | absolute_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>

Version data entries

9 entries across 9 versions & 3 rubygems

Version Path
minimal-mistakes-jekyll-4.4.1 _includes/gallery
jekyll-theme-woforo-0.2.3 _includes/gallery
jekyll-theme-woforo-0.2.2 _includes/gallery
jekyll-theme-woforo-0.2.1 _includes/gallery
jekyll-theme-woforo-0.2.0 _includes/gallery
mje-nz-mistakes-jekyll-4.1.1.2 _includes/gallery
mje-nz-mistakes-jekyll-4.1.1.1 _includes/gallery
mje-nz-mistakes-jekyll-4.1.1.dev _includes/gallery
minimal-mistakes-jekyll-4.1.1 _includes/gallery