diff options
author | zotlabs <mike@macgirvin.com> | 2018-06-25 20:58:23 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2018-06-25 20:58:23 -0700 |
commit | b89387d60840595ab13343a05cc4294c51a9152b (patch) | |
tree | 2f21d81fb035b18683701f74b0b129facd04daee /view/php/full.php | |
parent | 712759ea4b587f9d5b9dfac7216b7f14f32e7792 (diff) | |
parent | cef1c09db651819c8e457c66aaa37f6f7a05578f (diff) | |
download | volse-hubzilla-b89387d60840595ab13343a05cc4294c51a9152b.tar.gz volse-hubzilla-b89387d60840595ab13343a05cc4294c51a9152b.tar.bz2 volse-hubzilla-b89387d60840595ab13343a05cc4294c51a9152b.zip |
Merge branch 'dev' of https://framagit.org/hubzilla/core into xdev_merge
Diffstat (limited to 'view/php/full.php')
-rw-r--r-- | view/php/full.php | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/view/php/full.php b/view/php/full.php index 094874766..1a9cd9a84 100644 --- a/view/php/full.php +++ b/view/php/full.php @@ -1,14 +1,15 @@ -<!DOCTYPE html> +<!DOCTYPE html > <html prefix="og: http://ogp.me/ns#"> <head> <title><?php if(x($page,'title')) echo $page['title'] ?></title> <script>var baseurl="<?php echo z_root() ?>";</script> <?php if(x($page,'htmlhead')) echo $page['htmlhead'] ?> </head> -<body> +<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 fixed-top navbar-expand-md navbar-dark bg-dark"><?php if(x($page,'nav')) echo $page['nav']; ?></nav> - <section><?php if(x($page,'content')) echo $page['content']; ?> + <nav class="navbar fixed-top navbar-expand-lg navbar-dark bg-dark"><?php if(x($page,'nav')) echo $page['nav']; ?></nav> + <section id="region_2"><?php if(x($page,'content')) echo $page['content']; ?> <div id="page-footer"></div> </section> </body> |