mirror of
https://github.com/KevinMidboe/schleppe-lab.git
synced 2025-10-29 01:30:39 +00:00
- Border accent shadow effect that makes assets float of page - Apply border accent to image captions
24 lines
603 B
HTML
24 lines
603 B
HTML
<!-- _includes/image.html -->
|
|
{% if include.fullwidth %}
|
|
<figure class="border-accent fullwidth">
|
|
{% else %}
|
|
<figure class="border-accent">
|
|
{% 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>
|