#17: make header layout configurable

This commit is contained in:
Jana Deutschländer 2019-03-11 16:08:20 +01:00 committed by Andreas Gohr
commit 72166b7941
9 changed files with 171 additions and 3 deletions

View file

@ -5,4 +5,4 @@
*/
$conf['sidebar_sections'] = 'h1,h2,h3,h4,h5';
$conf['header_layout'] = 'header-default';

View file

@ -9,3 +9,12 @@ $meta['sidebar_sections'] = array(
'li.level1 > .li',
),
);
$meta['header_layout'] = array(
'multichoice',
'_choices' => array(
'header-default',
'header-compact',
'header-hidden',
),
);