diff --git a/brain/data/Render.inc.php b/brain/data/Render.inc.php index a3aae82..8c14b9c 100644 --- a/brain/data/Render.inc.php +++ b/brain/data/Render.inc.php @@ -26,6 +26,30 @@ class Render $settings["global"]["base_url"] . $settings["global"]["background"], "baseURL" => $settings["global"]["base_url"], ]; + //move global theme image assets to public folder + foreach ( + new DirectoryIterator( + "../content/themes/" . $this->theme . "/assets/images/global/" + ) + as $file + ) { + if ($file->isDot()) { + continue; + } + if (!is_file("../public/assets/images/global/" . $file->getFileName())) { + copy( + "../content/themes/" . + $this->theme . + "/assets/images/global/" . + $file->getFileName(), + "../public/assets/images/global/" . $file->getFileName() + ); + } else { + //image is already there, so chill + } + //print $file->getFilename() . "\n"; + } + //copy current theme assets to public if (is_file("../public/assets/css/base.css")) { unlink("../public/assets/css/base.css"); diff --git a/content/themes/fipamo-default/assets/images/global/the-logo.svg b/content/themes/fipamo-default/assets/images/global/fipamo-logo.svg similarity index 100% rename from content/themes/fipamo-default/assets/images/global/the-logo.svg rename to content/themes/fipamo-default/assets/images/global/fipamo-logo.svg