Initial Commit
The initial public commit of MVGL website code.
This commit is contained in:
commit
b39ecf1638
2043 changed files with 215154 additions and 0 deletions
127
config/demo1/general.php
Normal file
127
config/demo1/general.php
Normal file
|
@ -0,0 +1,127 @@
|
|||
<?php
|
||||
|
||||
return array(
|
||||
// Refer to config/global/general.php
|
||||
|
||||
// Assets
|
||||
'assets' => array(
|
||||
'favicon' => 'media/logos/favicon.ico',
|
||||
'fonts' => array(
|
||||
'google' => array(
|
||||
'Poppins:300,400,500,600,700',
|
||||
),
|
||||
),
|
||||
'css' => array(
|
||||
'plugins/global/plugins.bundle.css',
|
||||
'plugins/global/plugins-custom.bundle.css',
|
||||
'css/style.bundle.css',
|
||||
),
|
||||
'js' => array(
|
||||
'plugins/global/plugins.bundle.js',
|
||||
'js/scripts.bundle.js',
|
||||
'js/custom/widgets.js',
|
||||
),
|
||||
),
|
||||
|
||||
// Layout
|
||||
'layout' => array(
|
||||
// Main
|
||||
'main' => array(
|
||||
'base' => 'default', // Set base layout: default|docs
|
||||
'type' => 'default', // Set layout type: default|blank|none
|
||||
'dark-mode-enabled' => true, // Enable optional dark mode mode
|
||||
'primary-color' => '#009EF7', // Primary color used in email templates
|
||||
),
|
||||
|
||||
// Loader
|
||||
'loader' => array(
|
||||
'display' => true,
|
||||
'type' => 'default' // Set default|spinner-message|spinner-logo to hide or show page loader
|
||||
),
|
||||
|
||||
// Header
|
||||
'header' => array(
|
||||
'display' => true, // Display header
|
||||
'width' => 'fluid', // Set header width(fixed|fluid)
|
||||
'left' => 'menu', // Set left part content(menu|page-title)
|
||||
'fixed' => array(
|
||||
'desktop' => true, // Set fixed header for desktop
|
||||
'tablet-and-mobile' => true // Set fixed header for tablet & mobile
|
||||
),
|
||||
'menu-icon' => 'font' // Menu icon type(svg|font)
|
||||
),
|
||||
|
||||
// Toolbar
|
||||
'toolbar' => array(
|
||||
'display' => false, // Display toolbar
|
||||
'width' => 'fluid', // Set toolbar container width(fluid|fixed)
|
||||
'fixed' => array(
|
||||
'desktop' => true, // Set fixed header for desktop
|
||||
'tablet-and-mobile' => false // Set fixed header for tablet & mobile
|
||||
),
|
||||
'layout' => 'toolbar-1', // Set toolbar type
|
||||
'layouts' => array(
|
||||
'toolbar-1' => array(
|
||||
'height' => '55px',
|
||||
'height-tablet-and-mobile' => '55px',
|
||||
),
|
||||
'toolbar-2' => array(
|
||||
'height' => '75px',
|
||||
'height-tablet-and-mobile' => '65px',
|
||||
),
|
||||
'toolbar-3' => array(
|
||||
'height' => '55px',
|
||||
'height-tablet-and-mobile' => '55px',
|
||||
),
|
||||
'toolbar-4' => array(
|
||||
'height' => '65px',
|
||||
'height-tablet-and-mobile' => '65px',
|
||||
),
|
||||
'toolbar-5' => array(
|
||||
'height' => '75px',
|
||||
'height-tablet-and-mobile' => '65px',
|
||||
),
|
||||
),
|
||||
),
|
||||
|
||||
// Page title
|
||||
'page-title' => array(
|
||||
'display' => true, // Display page title
|
||||
'breadcrumb' => true, // Display breadcrumb
|
||||
'description' => false, // Display description
|
||||
'layout' => 'default', // Set layout(default|select)
|
||||
'direction' => 'row', // Flex direction(column|row))
|
||||
'responsive' => true, // Move page title to content on mobile mode
|
||||
'responsive-breakpoint' => 'lg', // Responsive breakpoint value(e.g: md, lg, or 300px)
|
||||
'responsive-target' => '#kt_toolbar_container' // Responsive target selector
|
||||
),
|
||||
|
||||
// Aside
|
||||
'aside' => array(
|
||||
'display' => true, // Display aside
|
||||
'theme' => 'dark', // Set aside theme(dark|light)
|
||||
'menu' => 'main', // Set aside menu(main|documentation)
|
||||
'fixed' => true, // Enable aside fixed mode
|
||||
'minimized' => false, // Set aside minimized by default
|
||||
'minimize' => true, // Allow aside minimize toggle
|
||||
'hoverable' => true, // Allow aside hovering when minimized
|
||||
'menu-icon' => 'font' // Menu icon type(svg|font)
|
||||
),
|
||||
|
||||
// Content
|
||||
'content' => array(
|
||||
'width' => 'fluid', // Set content width(fixed|fluid)
|
||||
'layout' => 'default' // Set content layout(default|documentation)
|
||||
),
|
||||
|
||||
// Footer
|
||||
'footer' => array(
|
||||
'width' => 'fluid' // Set fixed|fluid to change width type
|
||||
),
|
||||
|
||||
// Scrolltop
|
||||
'scrolltop' => array(
|
||||
'display' => true // Display scrolltop
|
||||
),
|
||||
),
|
||||
);
|
5
config/demo1/menu.php
Normal file
5
config/demo1/menu.php
Normal file
|
@ -0,0 +1,5 @@
|
|||
<?php
|
||||
|
||||
return array(
|
||||
// Refer to config/global/menu.php
|
||||
);
|
34
config/demo1/pages.php
Normal file
34
config/demo1/pages.php
Normal 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
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
Loading…
Add table
Add a link
Reference in a new issue