feat: cache bust images in shortcodes (#504)

This commit is contained in:
2025-04-03 14:44:01 +07:00
parent e3b1d7dc89
commit ac2bedac72
6 changed files with 18 additions and 18 deletions

View File

@@ -9,9 +9,9 @@
{#- Fallback to absolute path if relative path doesn't work -#}
{%- if not meta -%}
{%- set meta = get_image_metadata(path=src, allow_missing=true) -%}
{%- set image_url = get_url(path=src) -%}
{%- set image_url = get_url(path=src, cachebust=true) -%}
{%- else -%}
{%- set image_url = get_url(path=relative_path) -%}
{%- set image_url = get_url(path=relative_path, cachebust=true) -%}
{%- endif -%}
{%- endif -%}

View File

@@ -16,9 +16,9 @@
{%- set relative_light_path = colocated_path ~ light_src -%}
{%- set light_meta = get_image_metadata(path=relative_light_path, allow_missing=true) -%}
{%- if not light_meta -%}
{%- set light_image_url = get_url(path=light_src) -%}
{%- set light_image_url = get_url(path=light_src, cachebust=true) -%}
{%- else -%}
{%- set light_image_url = get_url(path=relative_light_path) -%}
{%- set light_image_url = get_url(path=relative_light_path, cachebust=true) -%}
{%- endif -%}
{%- endif -%}
@@ -29,9 +29,9 @@
{%- set relative_dark_path = colocated_path ~ dark_src -%}
{%- set dark_meta = get_image_metadata(path=relative_dark_path, allow_missing=true) -%}
{%- if not dark_meta -%}
{%- set dark_image_url = get_url(path=dark_src) -%}
{%- set dark_image_url = get_url(path=dark_src, cachebust=true) -%}
{%- else -%}
{%- set dark_image_url = get_url(path=relative_dark_path) -%}
{%- set dark_image_url = get_url(path=relative_dark_path, cachebust=true) -%}
{%- endif -%}
{%- endif -%}

View File

@@ -9,9 +9,9 @@
{#- Fallback to absolute path if relative path doesn't work -#}
{%- if not meta -%}
{%- set meta = get_image_metadata(path=src, allow_missing=true) -%}
{%- set image_url = get_url(path=src) -%}
{%- set image_url = get_url(path=src, cachebust=true) -%}
{%- else %}
{%- set image_url = get_url(path=relative_path) -%}
{%- set image_url = get_url(path=relative_path, cachebust=true) -%}
{%- endif -%}
{%- endif -%}

View File

@@ -21,9 +21,9 @@
{%- set relative_default_path = colocated_path ~ default_src -%}
{%- set default_meta = get_image_metadata(path=relative_default_path, allow_missing=true) -%}
{%- if not default_meta -%}
{%- set default_image_url = get_url(path=default_src) -%}
{%- set default_image_url = get_url(path=default_src, cachebust=true) -%}
{%- else -%}
{%- set default_image_url = get_url(path=relative_default_path) -%}
{%- set default_image_url = get_url(path=relative_default_path, cachebust=true) -%}
{%- endif -%}
{%- endif -%}
@@ -34,9 +34,9 @@
{%- set relative_hovered_path = colocated_path ~ hovered_src -%}
{%- set hovered_meta = get_image_metadata(path=relative_hovered_path, allow_missing=true) -%}
{%- if not hovered_meta -%}
{%- set hovered_image_url = get_url(path=hovered_src) -%}
{%- set hovered_image_url = get_url(path=hovered_src, cachebust=true) -%}
{%- else -%}
{%- set hovered_image_url = get_url(path=relative_hovered_path) -%}
{%- set hovered_image_url = get_url(path=relative_hovered_path, cachebust=true) -%}
{%- endif -%}
{%- endif -%}

View File

@@ -25,9 +25,9 @@
{%- set relative_default_path = colocated_path ~ default_src -%}
{%- set default_meta = get_image_metadata(path=relative_default_path, allow_missing=true) -%}
{%- if not default_meta -%}
{%- set default_image_url = get_url(path=default_src) -%}
{%- set default_image_url = get_url(path=default_src, cachebust=true) -%}
{%- else -%}
{%- set default_image_url = get_url(path=relative_default_path) -%}
{%- set default_image_url = get_url(path=relative_default_path, cachebust=true) -%}
{%- endif -%}
{%- endif -%}
@@ -38,9 +38,9 @@
{%- set relative_toggled_path = colocated_path ~ toggled_src -%}
{%- set toggled_meta = get_image_metadata(path=relative_toggled_path, allow_missing=true) -%}
{%- if not toggled_meta -%}
{%- set toggled_image_url = get_url(path=toggled_src) -%}
{%- set toggled_image_url = get_url(path=toggled_src, cachebust=true) -%}
{%- else -%}
{%- set toggled_image_url = get_url(path=relative_toggled_path) -%}
{%- set toggled_image_url = get_url(path=relative_toggled_path, cachebust=true) -%}
{%- endif -%}
{%- endif -%}

View File

@@ -9,9 +9,9 @@
{#- Fallback to absolute path if relative path doesn't work -#}
{%- if not meta -%}
{%- set meta = get_image_metadata(path=src, allow_missing=true) -%}
{%- set image_url = get_url(path=src) -%}
{%- set image_url = get_url(path=src, cachebust=true) -%}
{%- else %}
{%- set image_url = get_url(path=relative_path) -%}
{%- set image_url = get_url(path=relative_path, cachebust=true) -%}
{%- endif -%}
{%- endif -%}