aboutsummaryrefslogtreecommitdiffstats
path: root/view/php/default.php
diff options
context:
space:
mode:
authormarijus <mario@mariovavti.com>2014-03-07 13:36:49 +0100
committermarijus <mario@mariovavti.com>2014-03-07 13:36:49 +0100
commite8da840eec218acab2e9d26ee33915679ac88b5c (patch)
treea2253faea8519baea5a689c5a516d4f99045cc7c /view/php/default.php
parent2a1729e6718a6a09fb322d8e115b5d47235ce809 (diff)
downloadvolse-hubzilla-e8da840eec218acab2e9d26ee33915679ac88b5c.tar.gz
volse-hubzilla-e8da840eec218acab2e9d26ee33915679ac88b5c.tar.bz2
volse-hubzilla-e8da840eec218acab2e9d26ee33915679ac88b5c.zip
remove aside on navbar collapse and add button to toggle visibility
Diffstat (limited to 'view/php/default.php')
-rw-r--r--view/php/default.php41
1 files changed, 21 insertions, 20 deletions
diff --git a/view/php/default.php b/view/php/default.php
index fd29ef3db..87b92161b 100644
--- a/view/php/default.php
+++ b/view/php/default.php
@@ -1,20 +1,21 @@
-<!DOCTYPE html >
-<html>
-<head>
- <title><?php if(x($page,'title')) echo $page['title'] ?></title>
- <script>var baseurl="<?php echo $a->get_baseurl() ?>";</script>
- <?php if(x($page,'htmlhead')) echo $page['htmlhead'] ?>
-</head>
-<body>
- <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>
- <aside id="region_1"><?php if(x($page,'aside')) echo $page['aside']; ?></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"><?php if(x($page,'right_aside')) echo $page['right_aside']; ?></aside>
- <footer><?php if(x($page,'footer')) echo $page['footer']; ?></footer>
-</body>
-</html>
-
+<!DOCTYPE html >
+<html>
+<head>
+ <title><?php if(x($page,'title')) echo $page['title'] ?></title>
+ <script>var baseurl="<?php echo $a->get_baseurl() ?>";</script>
+ <?php if(x($page,'htmlhead')) echo $page['htmlhead'] ?>
+</head>
+<body>
+ <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>
+ <main>
+ <aside id="region_1" class="hidden-xs"><?php if(x($page,'aside')) echo $page['aside']; ?></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"><?php if(x($page,'right_aside')) echo $page['right_aside']; ?></aside>
+ </main>
+ <footer><?php if(x($page,'footer')) echo $page['footer']; ?></footer>
+</body>
+</html>