mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-01 12:19:28 +00:00
21 lines
426 B
PHP
21 lines
426 B
PHP
<?php
|
|
$includesArray = array(
|
|
'title' => $title ?? 'FH-Complete',
|
|
'vue3' => true,
|
|
'bootstrap5' => true,
|
|
'fontawesome6' => true,
|
|
'axios027' => true,
|
|
'customJSModules' => array_merge([
|
|
'public/js/apps/Cis.js'
|
|
], $customJSModules ?? []),
|
|
'customCSSs' => array_merge([
|
|
'public/css/Cis4/Cis.css'
|
|
], $customCSSs ?? [])
|
|
);
|
|
?>
|
|
|
|
</main>
|
|
</div>
|
|
</div>
|
|
|
|
<?php $this->load->view('templates/FHC-Footer', $includesArray); ?>
|