blob: 9649bf4ab4fd2cec13da31636544e3e7477f432c (
plain)
1
2
3
4
5
6
7
8
|
<?php /* Copyright (c) 2024 Freya Murphy */
function embed_css_ext(string $file) {
$css = Base::embed_css($file);
$web_root = Base::get_url('');
return str_replace("WEB_ROOT", $web_root, $css);
}
|