Sha256: 7cf92d031fa74312fbf6e296b927b3146cebea9e2735826d898ac7ec7f056b7d

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 | 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>

Version data entries

9 entries across 9 versions & 2 rubygems

Version Path
minimal-mistakes-jekyll-4.12.2 _includes/gallery
minimal-mistakes-jekyll-4.12.1 _includes/gallery
benimal-mistakes-jekyll-0.3.0 _includes/gallery
benimal-mistakes-jekyll-0.2.0 _includes/gallery
benimal-mistakes-jekyll-0.0.2 _includes/gallery
benimal-mistakes-jekyll-0.0.1 _includes/gallery
minimal-mistakes-jekyll-4.12.0 _includes/gallery
minimal-mistakes-jekyll-4.11.2 _includes/gallery
minimal-mistakes-jekyll-4.11.1 _includes/gallery