mirror of
https://github.com/SebastianStork/kita.git
synced 2026-01-21 12:11:35 +01:00
17 lines
617 B
HTML
17 lines
617 B
HTML
{% set img = body | trim_start_matches(pat=" %}<!---->
|
|
{% set alt = img | first() %}<!---->
|
|
{% set_global src = img | last() %}<!---->
|
|
{% set ignore_names = ["inline svg", "inline-svg", "inline_svg"] %}<!---->
|
|
|
|
{% for asset in page.assets -%}<!---->
|
|
{% if asset is ending_with("/" ~ src) %}<!---->
|
|
{% set_global src = asset %}<!---->
|
|
{% endif %}<!---->
|
|
{% endfor %}<!---->
|
|
|
|
<figure class="inline-svg">
|
|
{{ load_data(path=src) | safe}}<!---->
|
|
{% if alt and not ignore_names is containing(alt | lower) %}
|
|
<figcaption>{{ alt }}</figcaption>
|
|
{% endif %}
|
|
</figure>
|