mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-09 16:19:28 +00:00
17 lines
331 B
PHP
Executable File
17 lines
331 B
PHP
Executable File
<?php
|
|
$includesArray = array(
|
|
'title' => 'MyLv',
|
|
'customJSModules' => ['public/js/apps/Cis/MyLv/Student.js']
|
|
);
|
|
|
|
$this->load->view('templates/CISVUE-Header', $includesArray);
|
|
?>
|
|
|
|
<div id="content">
|
|
<h2>MyLv</h2>
|
|
<hr>
|
|
<mylv-student></mylv-student>
|
|
</div>
|
|
|
|
<?php $this->load->view('templates/CISVUE-Footer', $includesArray); ?>
|