diff options
author | friendica <info@friendica.com> | 2013-01-08 11:59:29 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-01-08 11:59:29 -0800 |
commit | a96d3ac66f50615ffc0ba764fdeba14cdae00c86 (patch) | |
tree | 3d10d634839c9d5628d4df8abe1e1881d9211a93 /view/php/full.php | |
parent | 3b213c5fc76d7392f1fd825b9db4fb4dfb8b9940 (diff) | |
download | volse-hubzilla-a96d3ac66f50615ffc0ba764fdeba14cdae00c86.tar.gz volse-hubzilla-a96d3ac66f50615ffc0ba764fdeba14cdae00c86.tar.bz2 volse-hubzilla-a96d3ac66f50615ffc0ba764fdeba14cdae00c86.zip |
The rest of the front end for the new notifications - now only missing "mark all seen" for some types, ajax loader for a couple of types, and perhaps a birthday cake icon if any birthdays today, a bit of css cleanup of duplicated or obsolete stuff
Diffstat (limited to 'view/php/full.php')
-rw-r--r-- | view/php/full.php | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/view/php/full.php b/view/php/full.php index c4d62d5cd..d8643d5a1 100644 --- a/view/php/full.php +++ b/view/php/full.php @@ -1,14 +1,14 @@ -<!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>
- <section><?php if(x($page,'content')) echo $page['content']; ?>
- <div id="page-footer"></div>
+<!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> + <nav><?php if(x($page,'nav')) echo $page['nav']; ?></nav> + <section><?php if(x($page,'content')) echo $page['content']; ?> + <div id="page-footer"></div> </section> -</body>
-</html>
-
+</body> +</html> |