mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-12 17:49:28 +00:00
16 lines
344 B
PHP
16 lines
344 B
PHP
<?php
|
|
$includesArray = array(
|
|
'title' => 'Stundenplan',
|
|
'customJSModules' => ['public/js/apps/Cis/Stundenplan.js'],
|
|
'customCSSs' => ['public/css/components/calendar.css']
|
|
);
|
|
|
|
$this->load->view('templates/CISVUE-Header', $includesArray);
|
|
?>
|
|
|
|
<div id="content">
|
|
|
|
</div>
|
|
|
|
<?php $this->load->view('templates/CISVUE-Footer', $includesArray); ?>
|