Files
schleppe-lab/_includes/image.html

24 lines
567 B
HTML

<!-- _includes/image.html -->
{% if include.fullwidth %}
<figure class="fullwidth">
{% else %}
<figure>
{% endif %}
{% if include.url %}
<a href="{{ include.url }}">
{% endif %}
<img
{% if include.srcabs %}
src="{{ include.srcabs }}"
{% else %}
src="{{ site.baseurl }}/assets/images/{{ include.src }}"
{% endif %}
alt="{{ include.alt }}">
{% if include.url %}
</a>
{% endif %}
{% if include.caption %}
<figcaption>{{ include.caption }}</figcaption>
{% endif %}
</figure>