Sha256: dfaae1ff1d1cc4266189281287f30c44d1fc800389e1601736198dbcc9050be0

Contents?: true

Size: 931 Bytes

Versions: 4

Compression:

Stored size: 931 Bytes

Contents

{% if include.img.src or include.img.path %}
  {% assign srcset = null %}

  {% if include.img.srcset %}
    {% capture srcset %}{% for hash in include.img.srcset %}{{ hash[1]}} {{ hash[0] }}{% unless forloop.last %},{% endunless %}{% endfor %}{% endcapture %}
  {% endif %}

  <img
    src="{{ include.img.src | default:include.img.path }}"
    {% if include.class %}class="{{ include.class }}"{% endif %}
    {% if include.alt %}alt="{{ include.alt }}"{% endif %}
    {% if srcset %}srcset="{{ srcset | strip }}"{% endif %}
    {% if include.sizes %}sizes="{{ include.sizes }}"{% endif %}
    {% if include.property %}property="{{ include.property }}"{% endif %}
  />
{% else %}
  <img
    src="{{ include.img }}"
    {% if include.class %}class="{{ include.class }}"{% endif %}
    {% if include.alt %}alt="{{ include.alt }}"{% endif %}
    {% if include.property %}property="{{ include.property }}"{% endif %}
  />
{% endif %}

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
jekyll-theme-hydejack-7.0.1 _includes/srcset-img.html
jekyll-theme-hydejack-7.0.0 _includes/srcset-img.html
jekyll-theme-hydejack-7.0.0.pre.beta.1 _includes/srcset-img.html
jekyll-theme-hydejack-7.0.0.pre.beta.0 _includes/srcset-img.html