34 lines
1.1 KiB
PHP
34 lines
1.1 KiB
PHP
<?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
|
|
),
|
|
),
|
|
),
|
|
),
|
|
);
|