Sha256: f5d19660043ffee1479e008763cc25d514b74cadcba8529add7b534cc063cc94

Contents?: true

Size: 821 Bytes

Versions: 14

Compression:

Stored size: 821 Bytes

Contents

<div x-data="{ open: false }">
    <a @click="open = true" title="View large image">
        <figure class="image {{ include.ratio | default: is-16by9 }}">
            <img src="{{ include.link | absolute_url }}" alt="{{ include.alt }}">
        </figure>
    </a>
    <div class="modal" :class="{ 'is-active': open }">
        <div class="modal-background" @click="open = false"></div>
        <div class="modal-content">
            {% if include.large_link %}
                <img src="{{ include.large_link | absolute_url }}" alt="{{ include.alt }}">
            {% else %}
                <img src="{{ include.link | absolute_url }}" alt="{{ include.alt }}">
            {% endif %}
        </div>
        <button class="modal-close is-large" aria-label="close" @click="{ open = false }"></button>
    </div>
</div>

Version data entries

14 entries across 14 versions & 2 rubygems

Version Path
bulma-clean-theme-0.12 _includes/image-modal.html
jekyll-theme-opentoolbox-1.1.0 _includes/image-modal.html
jekyll-theme-opentoolbox-1.0.8 _includes/image-modal.html
bulma-clean-theme-0.11.2 _includes/image-modal.html
bulma-clean-theme-0.11.1 _includes/image-modal.html
bulma-clean-theme-0.11 _includes/image-modal.html
bulma-clean-theme-0.10.6 _includes/image-modal.html
bulma-clean-theme-0.10.5 _includes/image-modal.html
bulma-clean-theme-0.10.4 _includes/image-modal.html
bulma-clean-theme-0.10.3 _includes/image-modal.html
bulma-clean-theme-0.10.2 _includes/image-modal.html
bulma-clean-theme-0.10.1 _includes/image-modal.html
bulma-clean-theme-0.10 _includes/image-modal.html
bulma-clean-theme-0.9.2 _includes/image-modal.html