New theme base for SuiteDesk
This commit is contained in:
parent
c1bbd9d6f5
commit
8cf3c56044
137 changed files with 12866 additions and 8 deletions
21
themes/zen/layouts/two_sidebars/two_sidebars.inc
Normal file
21
themes/zen/layouts/two_sidebars/two_sidebars.inc
Normal file
|
@ -0,0 +1,21 @@
|
|||
<?php
|
||||
/**
|
||||
* Implements hook_panels_layouts().
|
||||
*/
|
||||
function zen_two_sidebars_panels_layouts() {
|
||||
$items['two_sidebars'] = array(
|
||||
'title' => t('Zen Layout: two sidebars with content'),
|
||||
'icon' => 'two-sidebars.png',
|
||||
'theme' => 'zen_two_sidebars',
|
||||
'admin theme' => 'zen_two_sidebars_admin',
|
||||
'css' => 'two-sidebars.css',
|
||||
'admin css' => 'two-sidebars-admin.css',
|
||||
'panels' => array(
|
||||
'content' => t('Content'),
|
||||
'sidebar_first' => t('First sidebar'),
|
||||
'sidebar_second' => t('Second sidebar'),
|
||||
),
|
||||
);
|
||||
|
||||
return $items;
|
||||
}
|
Reference in a new issue