mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-01 12:19:28 +00:00
38 lines
954 B
PHP
38 lines
954 B
PHP
<?php
|
|
$this->load->view(
|
|
'templates/FHC-Header',
|
|
array(
|
|
'title' => 'FH-Complete',
|
|
'bootstrap5' => true,
|
|
'fontawesome6' => true,
|
|
'axios027' => true,
|
|
'restclient' => true,
|
|
'vue3' => true,
|
|
'vuedatepicker11' => true,
|
|
'primevue3' => true,
|
|
'customJSs' => [
|
|
'vendor/moment/luxonjs/luxon.min.js'
|
|
],
|
|
'customJSModules' => ['public/js/apps/Dashboard/Preview.js'],
|
|
'customCSSs' => [
|
|
'public/css/components/dashboard.css'
|
|
],
|
|
'navigationcomponent' => true
|
|
)
|
|
);
|
|
?>
|
|
|
|
<div id="main">
|
|
|
|
<core-navigation-cmpt :add-side-menu-entries="appSideMenuEntries"></core-navigation-cmpt>
|
|
|
|
<div id="content">
|
|
<div class="d-flex justify-content-between flex-wrap flex-md-nowrap align-items-center pt-3 pb-2 mb-3 border-bottom">
|
|
<h1 class="h2">Dashboard <?= $dashboard_kurzbz ?></h1>
|
|
</div>
|
|
<core-dashboard dashboard="<?= $dashboard_kurzbz ?>"></core-dashboard>
|
|
</div>
|
|
</div>
|
|
|
|
<?php $this->load->view('templates/FHC-Footer'); ?>
|