Sha256: 992910ba11bf09ee72763d3d25a4b389d2eff807f31af4abec9758d43f001041

Contents?: true

Size: 960 Bytes

Versions: 10

Compression:

Stored size: 960 Bytes

Contents

{% comment %}
Imágenes responsive.  Esto logra que solo se carguen las versiones de
las imágenes con el ancho máximo de la pantalla.

TODO: Las imágenes en md y superior nunca llegan al ancho máximo así
que tienen una resolución de más.
{% endcomment %}
{%- assign image = include.image.path | default: 'public/placeholder.png' %}
{%- assign height = include.height | default: site.i18n.post.height -%}
{%- assign width = include.width | default: '100' -%}

<picture>
  {% for size in site.images.sizes %}
    <source srcset="{{ image | thumbnail: size }}" media="(max-width: {{ size }}px)" />
  {% endfor %}

  <img
    class="u-photo w-{{ width }} {{ include.cover | equals: false | value_unless: 'fit-cover' }} h-{{ height }} {{ include.extra }}"
    loading="lazy"
    itemprop="{{ include.itemprop | default: 'image' }}"
    src="{{ image | thumbnail: 1140 }}"
    alt="{{ include.image.description | include.default_description }}" />
</picture>

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
editorial-autogestiva-jekyll-theme-0.5.0rc0 _includes/picture.html
editorial-autogestiva-jekyll-theme-0.4.2 _includes/picture.html
editorial-autogestiva-jekyll-theme-0.4.1 _includes/picture.html
editorial-autogestiva-jekyll-theme-0.4.0 _includes/picture.html
editorial-autogestiva-jekyll-theme-0.3.5 _includes/picture.html
editorial-autogestiva-jekyll-theme-0.3.4 _includes/picture.html
editorial-autogestiva-jekyll-theme-0.3.3 _includes/picture.html
editorial-autogestiva-jekyll-theme-0.3.2 _includes/picture.html
editorial-autogestiva-jekyll-theme-0.3.1 _includes/picture.html
editorial-autogestiva-jekyll-theme-0.3.0 _includes/picture.html