jekyll-theme-isabelline/_includes/image.html

21 lines
779 B
HTML
Raw Normal View History

2020-05-31 20:26:49 +00:00
{% capture imagePath %}/assets/blog/{{ page.id | split: "/" | last }}/{{ include.name }}{% endcapture %}
2019-07-22 02:16:23 +00:00
2020-05-31 20:26:49 +00:00
{% capture src %}src="{{ imagePath }}"{% endcapture %}
{% assign alt=include.alt | default: "" %}
{% if alt != blank %}
{% capture alt %}alt="{{ include.alt }}" title="{{ include.alt}}"{% endcapture %}
2019-07-22 02:16:23 +00:00
{% endif %}
2020-05-31 20:26:49 +00:00
{% assign caption=include.caption | default: "" %}
{% if alt == blank and caption != blank %}
{% assign alt=caption %}
{% endif %}
{% assign frame=include.frame | default: true %}
<figure class="figure {% if include.caption %}caption{% endif %} {% if frame %}frame{% endif %}">
<a target="_blank" href="{{ imagePath }}"><img {{ src }} {{ alt }} width="100%" /></a>
{% if caption != blank %}<figcaption>{{ caption }}</figcaption>{% endif %}
2019-07-22 02:16:23 +00:00
</figure>