diff options
author | redmatrix <git@macgirvin.com> | 2016-06-19 21:10:57 -0700 |
---|---|---|
committer | redmatrix <git@macgirvin.com> | 2016-06-19 21:10:57 -0700 |
commit | 905374c86ef78dd6a2c1f7e37b6d290428e6259e (patch) | |
tree | bea876dfb4a4f30ffdc4cff75b70edd1b595f9d8 /view/php/default.php | |
parent | 30841d94709f025a03362b711c4dc2fee85285a7 (diff) | |
download | volse-hubzilla-905374c86ef78dd6a2c1f7e37b6d290428e6259e.tar.gz volse-hubzilla-905374c86ef78dd6a2c1f7e37b6d290428e6259e.tar.bz2 volse-hubzilla-905374c86ef78dd6a2c1f7e37b6d290428e6259e.zip |
experimental rtl support; this will probably require a fair bit of work.
Diffstat (limited to 'view/php/default.php')
-rw-r--r-- | view/php/default.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/view/php/default.php b/view/php/default.php index ad6b7a3d1..f5be4fa35 100644 --- a/view/php/default.php +++ b/view/php/default.php @@ -5,7 +5,7 @@ <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 navbar-inverse navbar-fixed-top" role="navigation"><?php if(x($page,'nav')) echo $page['nav']; ?></nav> |