myvideogamelist.com/config/demo1/general.php
Jimmy Brancaccio b39ecf1638 Initial Commit
The initial public commit of MVGL website code.
2024-01-14 13:51:43 -06:00

127 lines
4.9 KiB
PHP

<?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
),
),
);