Sha256: 997752440c2fc550bb572a5e35ac9d348408e0b4d0fe859bb6a9d54688c77e45

Contents?: true

Size: 730 Bytes

Versions: 2

Compression:

Stored size: 730 Bytes

Contents

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

{% if include.caption %}
<figure>
<img src="{{ site.baseurl }}/assets/images/posts/{{ imagePath }}" {% if include.alt %} alt="{{ include.alt }}" {% endif %} {% if include.width %} width="{{ include.width }}" {% endif %}/>
<figcaption>{{ include.caption }}</figcaption>
</figure>
{% else %}
<img src="{{ site.baseurl }}/assets/images/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
dark-minima-0.1.1 _includes/image.html
dark-minima-0.1.0 _includes/image.html