11 lines
272 B
PHP
11 lines
272 B
PHP
|
<?php
|
||
|
/**
|
||
|
* Theme Asset handler
|
||
|
*
|
||
|
* Serves theme assets through the main application router.
|
||
|
* This provides a secure way to serve theme files that are outside the web root.
|
||
|
*/
|
||
|
|
||
|
// Include the theme asset handler
|
||
|
require_once __DIR__ . '/../helpers/theme-asset.php';
|