Sha256: b8c17880befb63bc640630889d2459b09080da9f10120bff3ac96c631ed41595

Contents?: true

Size: 896 Bytes

Versions: 4

Compression:

Stored size: 896 Bytes

Contents

{%- comment -%}
  Modal con imagen

  @param :image [Image] la imagen que queremos en el modal, contiene url y alt text
{%- endcomment -%}

{% assign extra = 'data-action="click->modal#show"' %}
{% assign alt = include.image.name | strip_html | escape %}
{% assign src = include.image.url | strip_html | uri_escape %}

{% capture body %}
    <img class="background-white mw-100" title="{{ alt }}" alt="{{ alt }}" src="{{ src }}">
{% endcapture %}

<div class="{{ include.extra }} px-1" data-controller="modal">
  {%
    include embed_responsive.html
    x=16
    y=9
    src=src
    alt=alt
    extra=extra
    width=300
    img_class="cursor-pointer min-w-100px w-100 object-fit-cover"
  %}
  {% include activity_pub/generic_modal.html header_class="text-white" body=body body_class="d-flex justify-content-center" footer_class="d-none" content_class="background-transparent border-0" %}
</div>

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
compost-jekyll-theme-0.3.8 _includes/activity_pub/image_modal.html
compost-jekyll-theme-0.3.7 _includes/activity_pub/image_modal.html
compost-jekyll-theme-0.3.6 _includes/activity_pub/image_modal.html
compost-jekyll-theme-0.3.5 _includes/activity_pub/image_modal.html