New theme base for SuiteDesk

This commit is contained in:
Manuel Cillero 2017-07-25 13:55:37 +02:00
parent c1bbd9d6f5
commit 8cf3c56044
137 changed files with 12866 additions and 8 deletions

View 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;
}