2025-11-09 09:50:07 +01:00
|
|
|
// Pivoine Rose Custom Theme Injector
|
|
|
|
|
(function() {
|
|
|
|
|
// Inject custom CSS
|
|
|
|
|
var customCSS = document.createElement('link');
|
|
|
|
|
customCSS.rel = 'stylesheet';
|
2025-11-09 09:55:58 +01:00
|
|
|
customCSS.href = '/assets/custom.css';
|
2025-11-09 09:50:07 +01:00
|
|
|
document.head.appendChild(customCSS);
|
|
|
|
|
|
|
|
|
|
// Inject custom favicon
|
|
|
|
|
var customFavicon = document.createElement('link');
|
|
|
|
|
customFavicon.rel = 'icon';
|
|
|
|
|
customFavicon.type = 'image/svg+xml';
|
|
|
|
|
customFavicon.href = '/images/favicon-custom.svg';
|
|
|
|
|
document.head.appendChild(customFavicon);
|
|
|
|
|
|
|
|
|
|
console.log('Pivoine Rose theme loaded');
|
|
|
|
|
})();
|