diff options
author | Mario Vavti <mario@mariovavti.com> | 2017-03-09 10:17:57 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2017-03-09 10:17:57 +0100 |
commit | 39d56fd08f3ee2efc3d5eeddb75025034ee5e2c7 (patch) | |
tree | ccc4843c8bdb15fb97bae8111aa9b66b7c93d6c1 /view/php/default.php | |
parent | 8e3a02627629d29c3552f8332de1ab32b9c99ffe (diff) | |
download | volse-hubzilla-39d56fd08f3ee2efc3d5eeddb75025034ee5e2c7.tar.gz volse-hubzilla-39d56fd08f3ee2efc3d5eeddb75025034ee5e2c7.tar.bz2 volse-hubzilla-39d56fd08f3ee2efc3d5eeddb75025034ee5e2c7.zip |
initial commit for the bootstrap version 4 branch - upgrade lib and make nav.tpl kind of working again
Diffstat (limited to 'view/php/default.php')
-rw-r--r-- | view/php/default.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/view/php/default.php b/view/php/default.php index 373fa2fd0..c4ba6ae43 100644 --- a/view/php/default.php +++ b/view/php/default.php @@ -7,15 +7,15 @@ </head> <body <?php if($page['direction']) echo 'dir="rtl"' ?> > <?php if(x($page,'banner')) echo $page['banner']; ?> - <header><?php if(x($page,'header')) echo $page['header']; ?></header> - <nav class="navbar navbar-inverse navbar-fixed-top" role="navigation"><?php if(x($page,'nav')) echo $page['nav']; ?></nav> + <header class="hidden-md-down"><?php if(x($page,'header')) echo $page['header']; ?></header> + <nav class="navbar fixed-top navbar-toggleable-sm navbar-inverse bg-inverse"><?php if(x($page,'nav')) echo $page['nav']; ?></nav> <main> <aside id="region_1"><div id="left_aside_spacer"><div id="left_aside_wrapper"><?php if(x($page,'aside')) echo $page['aside']; ?></div></div></aside> <section id="region_2"><?php if(x($page,'content')) echo $page['content']; ?> <div id="page-footer"></div> <div id="pause"></div> </section> - <aside id="region_3" class="hidden-sm hidden-xs hidden-md"><?php if(x($page,'right_aside')) echo $page['right_aside']; ?></aside> + <aside id="region_3" class="hidden-lg-down"><?php if(x($page,'right_aside')) echo $page['right_aside']; ?></aside> </main> <footer><?php if(x($page,'footer')) echo $page['footer']; ?></footer> </body> |