diff --git a/public/jollyroger_dark.svg b/public/img/jollyroger_dark.svg
similarity index 100%
rename from public/jollyroger_dark.svg
rename to public/img/jollyroger_dark.svg
diff --git a/public/jollyroger_light.svg b/public/img/jollyroger_light.svg
similarity index 100%
rename from public/jollyroger_light.svg
rename to public/img/jollyroger_light.svg
diff --git a/src/layouts/BlogPost.astro b/src/layouts/BlogPost.astro
index 0bee52e..60121ba 100644
--- a/src/layouts/BlogPost.astro
+++ b/src/layouts/BlogPost.astro
@@ -12,7 +12,7 @@ const { title, description, pubDate } = Astro.props;
const updateImageForTheme = () => {
const currentTheme = document.documentElement.classList.contains('dark') ? 'dark' : 'light';
- jollyroger.src = currentTheme === 'dark' ? '/jollyroger_dark.svg' : '/jollyroger_light.svg';
+ jollyroger.src = currentTheme === 'dark' ? '/img/jollyroger_dark.svg' : '/img/jollyroger_light.svg';
};
updateImageForTheme();
@@ -33,7 +33,7 @@ const { title, description, pubDate } = Astro.props;