From 733f1c17b939238341a50ce353263e9cc4162fe0 Mon Sep 17 00:00:00 2001 From: Brooke <12855764+goingforbrooke@users.noreply.github.com> Date: Mon, 5 Jun 2023 23:07:27 -0700 Subject: [PATCH] Fix: Show images stored alongside *.md sections --- templates/shortcodes/image.html | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/templates/shortcodes/image.html b/templates/shortcodes/image.html index 091eeb8..a80e99f 100644 --- a/templates/shortcodes/image.html +++ b/templates/shortcodes/image.html @@ -1,8 +1,10 @@ {% if src %} {# If the image's URL is internal to the site... #} {% if src is not starting_with("http") %} - {# ... then prepend the site's base URL to the image's URL. #} - {% set src = config.base_url ~ src %} + {# ... then convert the page's colocated_path ident to a string so it can be concatenated. #} + {% set page_path = page.colocated_path | as_str %} + {# ... and prepend the site's base URL to the image's URL. #} + {% set src = config.base_url ~ page_path ~ src %} {% endif %} {% endif %}