Sha256: 3e4b3f7ae4ea42bca3ecec4dcb992f11b63aff302d3602090df26f02bacce7d6

Contents?: true

Size: 924 Bytes

Versions: 18

Compression:

Stored size: 924 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="image"
    src="{{ image | thumbnail: 1140 }}"
    alt="{{ include.image.description | include.default_description }}" />
</picture>

Version data entries

18 entries across 18 versions & 3 rubygems

Version Path
adhesiones-jekyll-theme-0.4.1 _includes/picture.html
adhesiones-jekyll-theme-0.4.0 _includes/picture.html
observatorio-jekyll-theme-0.1.7 _includes/picture.html
adhesiones-jekyll-theme-0.3.2 _includes/picture.html
adhesiones-jekyll-theme-0.3.1 _includes/picture.html
recursero-jekyll-theme-0.3.0 _includes/picture.html
adhesiones-jekyll-theme-0.3.0 _includes/picture.html
adhesiones-jekyll-theme-0.2.6 _includes/picture.html
adhesiones-jekyll-theme-0.2.5 _includes/picture.html
adhesiones-jekyll-theme-0.2.4 _includes/picture.html
adhesiones-jekyll-theme-0.2.3 _includes/picture.html
adhesiones-jekyll-theme-0.2.2 _includes/picture.html
observatorio-jekyll-theme-0.1.6 _includes/picture.html
observatorio-jekyll-theme-0.1.5 _includes/picture.html
observatorio-jekyll-theme-0.1.4 _includes/picture.html
observatorio-jekyll-theme-0.1.3 _includes/picture.html
observatorio-jekyll-theme-0.1.2 _includes/picture.html
recursero-jekyll-theme-0.2.0 _includes/picture.html