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