Sha256: 715f5c2fc89751ea216036b23e62da2a526eff08ff604118e130d6e899f9fe46

Contents?: true

Size: 1.02 KB

Versions: 10

Compression:

Stored size: 1.02 KB

Contents

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

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

  {% assign src = include.img.src | default:include.img.path %}
  <img
    src="{% include smart-url url=src %}"
    {% 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 smart-url url=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

10 entries across 10 versions & 1 rubygems

Version Path
jekyll-theme-hydejack-7.5.2 _includes/srcset-img.html
jekyll-theme-hydejack-7.5.1 _includes/srcset-img.html
jekyll-theme-hydejack-7.5.0 _includes/srcset-img.html
jekyll-theme-hydejack-7.4.2 _includes/srcset-img.html
jekyll-theme-hydejack-7.4.1 _includes/srcset-img.html
jekyll-theme-hydejack-7.4.0 _includes/srcset-img.html
jekyll-theme-hydejack-7.3.0 _includes/srcset-img.html
jekyll-theme-hydejack-7.2.0 _includes/srcset-img.html
jekyll-theme-hydejack-7.1.1 _includes/srcset-img.html
jekyll-theme-hydejack-7.1.0 _includes/srcset-img.html