Initial Commit

The initial public commit of MVGL website code.
This commit is contained in:
Jimmy B. 2024-01-14 13:51:43 -06:00
commit b39ecf1638
2043 changed files with 215154 additions and 0 deletions

34
config/demo1/pages.php Normal file
View file

@ -0,0 +1,34 @@
<?php
return array(
'documentation' => array(
// Apply for all documentation pages
'*' => array(
// Layout
'layout' => array(
// Aside
'aside' => array(
'display' => true, // Display aside
'theme' => 'light', // Set aside theme(dark|light)
'minimize' => false, // Allow aside minimize toggle
'menu' => 'documentation' // Set aside menu type(main|documentation)
),
'header' => array(
'left' => 'page-title',
),
'toolbar' => array(
'display' => false,
),
'page-title' => array(
'layout' => 'documentation',
'description' => false,
'responsive' => true,
'responsive-target' => '#kt_header_nav' // Responsive target selector
),
),
),
),
);