bcd6126612
* Use relative_url and absolute_url where possible Drops the `contains "://"` check, adopt Jekyll 3.7 Ref: https://github.com/mmistakes/minimal-mistakes/pull/2385#issuecomment-579882236 * One more unneeded {% assign %} * Remove one more assign as noted by mmistakes * Consolidate 4 more captures * Consolidate an extra assign on "active" class
9 lines
314 B
Text
9 lines
314 B
Text
<figure class="{{ include.class }}">
|
|
<img src="{{ include.image_path | relative_url }}"
|
|
alt="{% if include.alt %}{{ include.alt }}{% endif %}">
|
|
{% if include.caption %}
|
|
<figcaption>
|
|
{{ include.caption | markdownify | remove: "<p>" | remove: "</p>" }}
|
|
</figcaption>
|
|
{% endif %}
|
|
</figure>
|