mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-04 13:49:29 +00:00
17 lines
353 B
PHP
17 lines
353 B
PHP
<?php
|
|
$includesArray = array(
|
|
'title' => 'Test VBform',
|
|
'bootstrap5' => true,
|
|
'fontawesome6' => true,
|
|
'vue3' => true,
|
|
'customJSModules' => array('public/js/apps/vbform/vbform.js')
|
|
);
|
|
|
|
$this->load->view('templates/FHC-Header', $includesArray);
|
|
?>
|
|
|
|
<div id="main"></div>
|
|
|
|
<?php $this->load->view('templates/FHC-Footer', $includesArray); ?>
|
|
|