Sha256: 7f19ecdd1dcae9fc6d0bfd91b4be073345590f51ac43a358fff54bf867324295

Contents?: true

Size: 684 Bytes

Versions: 2

Compression:

Stored size: 684 Bytes

Contents

{% if page.assets %}
    {% capture imagePath %}{{ page.assets | slugify }}/{{ include.name }}{% endcapture %}
{% else %}
    {% capture imagePath %}{{ page.title | slugify }}/{{ include.name }}{% endcapture %}
{% endif %}

{% if include.caption %}
<figure>
    <img src="/assets/posts/{{ imagePath }}" {% if include.alt %} alt="{{ include.alt }}" {% endif %} {% if include.width %} width="{{ include.width }}" {% endif %}/>
    <figcaption>{{ include.caption }}</figcaption>
</figure>
{% else %}
<img src="/assets/posts/{{ imagePath }}" {% if include.alt %} alt="{{ include.alt }}" {% endif %} {% if include.width %} width="{{ include.width }}" {% endif %}/>
{% endif %}

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
minima-rock-0.6.0 _includes/image.html
minima-rock-0.5.0 _includes/image.html