48 lines
2 KiB
HTML
48 lines
2 KiB
HTML
{%- set img = src | split(pat="/") | last %}
|
|
{%- set dirtest = src | trim_start_matches(pat="./") %}
|
|
{%- if dirtest is containing("/") %} {%- set reldir = true %} {%- endif %}
|
|
{%- if page.path %}{%- set pagepath = page.path %}{%- elif section.path %}{%- set pagepath = section.path %}{%- endif %}
|
|
|
|
{%- if src is starting_with("./") and reldir %} {# Relative Path #}
|
|
{%- set path = src | trim_start_matches(pat="./") | split(pat="/") | slice(end=-1) | join(sep="/") | trim_start_matches(pat="/") %}
|
|
{%- set path = path ~ "/" %}
|
|
{%- if not w or not h %}
|
|
{%- if lang != config.default_language %}
|
|
{%- set metapath = pagepath ~ path ~ img | replace(from=pagepath | truncate(length=4, end=""), to="/") %}
|
|
{%- else %}
|
|
{%- set metapath = pagepath ~ path ~ img %}
|
|
{%- endif %}
|
|
{%- set meta = get_image_metadata(path=metapath) %}
|
|
{%- set w = meta.width %}
|
|
{%- set h = meta.height %}
|
|
{%- endif %}
|
|
|
|
{%- elif src is starting_with("/") %} {# Root Path #}
|
|
{%- set rootpath = src | split(pat="/") | slice(end=-1) | join(sep="/") %}
|
|
{%- set path = config.base_url ~ rootpath ~ "/" %}
|
|
{%- if not w or not h %}
|
|
{%- set metapath = rootpath ~ "/" ~ img %}
|
|
{%- set meta = get_image_metadata(path=metapath) %}
|
|
{%- set w = meta.width %}
|
|
{%- set h = meta.height %}
|
|
{%- endif %}
|
|
|
|
{%- else %} {# Same Directory Path #}
|
|
{%- set path = "" %}
|
|
{%- if not w or not h %}
|
|
{%- if lang != config.default_language %}
|
|
{%- set metapath = pagepath ~ img | replace(from=pagepath | truncate(length=4, end=""), to="/") %}
|
|
{%- else %}
|
|
{%- set metapath = pagepath ~ img %}
|
|
{%- endif %}
|
|
{%- set meta = get_image_metadata(path=metapath) %}
|
|
{%- set w = meta.width %}
|
|
{%- set h = meta.height %}
|
|
{%- endif %}
|
|
{%- endif %}
|
|
|
|
{%- if not alt %}
|
|
{%- set alt = img | split(pat=".") | first %}
|
|
{%- endif %}
|
|
<img src="{{ path | safe }}{{ img | safe }}"{% if class %} class="{{class}}"{% endif %}{% if alt %} alt="{{alt}}"{% endif %}{% if w %} width="{{w}}"{% endif %}{% if h %} height="{{h}}"{% endif %} loading="lazy" />
|