Sha256: 00fc956eca22c678e4c13dfaa60c894630a7f73ae8633b57ab9c679baa226c42

Contents?: true

Size: 637 Bytes

Versions: 17

Compression:

Stored size: 637 Bytes

Contents

{%- comment -%}

Image component

@param :src [String]
@param :alt [String]
@param :width [Integer]
@param :class [String]
@param :img_class [String]
{%- endcomment -%}

<picture class="{{ include.class }}">
  <source
    srcset="
      {%- for pixel_density in site.data.theme.pixel_densities %}
        {%- assign w = include.width | times: pixel_density -%}
        {{- include.src | thumbnail: w | uri_escape }} {{ pixel_density }}x,
      {% endfor -%}
      " />

  <img
    class="{{ include.img_class }}"
    src="{{ include.src | thumbnail: include.width | uri_escape }}"
    alt="{{ include.alt | escape_once }}" />
</picture>

Version data entries

17 entries across 17 versions & 2 rubygems

Version Path
empresa-recuperada-jekyll-theme-0.2.6 _includes/picture.html
empresa-recuperada-jekyll-theme-0.2.5 _includes/picture.html
empresa-recuperada-jekyll-theme-0.2.4 _includes/picture.html
empresa-recuperada-jekyll-theme-0.2.3 _includes/picture.html
empresa-recuperada-jekyll-theme-0.2.2 _includes/picture.html
empresa-recuperada-jekyll-theme-0.2.1 _includes/picture.html
empresa-recuperada-jekyll-theme-0.2.0 _includes/picture.html
compost-jekyll-theme-0.1.9 _includes/picture.html
compost-jekyll-theme-0.1.8 _includes/picture.html
compost-jekyll-theme-0.1.7 _includes/picture.html
compost-jekyll-theme-0.1.6 _includes/picture.html
compost-jekyll-theme-0.1.5 _includes/picture.html
compost-jekyll-theme-0.1.4 _includes/picture.html
compost-jekyll-theme-0.1.3 _includes/picture.html
compost-jekyll-theme-0.1.2 _includes/picture.html
compost-jekyll-theme-0.1.1 _includes/picture.html
compost-jekyll-theme-0.1.0 _includes/picture.html