feat: cache bust images in shortcodes (#504)

This commit is contained in:
Axel Karjalainen 2025-04-02 23:25:23 +03:00 committed by GitHub
parent c7bc652618
commit cc39652eb5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 18 additions and 18 deletions

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 -%}