diff options
author | friendica <info@friendica.com> | 2013-05-28 19:59:27 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-05-28 19:59:27 -0700 |
commit | 5160f15b8029594f5f4ffc711bc19c984eecd301 (patch) | |
tree | 56881a0778705c83ce1917116b320da414c26227 /view | |
parent | be1c96996f483c8bf3ddd7084479404d4764336c (diff) | |
parent | 09f44b8096b43740dceb49b8fc44b71c9b0da1cd (diff) | |
download | volse-hubzilla-5160f15b8029594f5f4ffc711bc19c984eecd301.tar.gz volse-hubzilla-5160f15b8029594f5f4ffc711bc19c984eecd301.tar.bz2 volse-hubzilla-5160f15b8029594f5f4ffc711bc19c984eecd301.zip |
Merge https://github.com/friendica/red into zpull
Diffstat (limited to 'view')
-rw-r--r-- | view/php/default.php | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/view/php/default.php b/view/php/default.php index 80c8070b2..0f8847386 100644 --- a/view/php/default.php +++ b/view/php/default.php @@ -6,14 +6,16 @@ <?php if(x($page,'htmlhead')) echo $page['htmlhead'] ?>
</head>
<body>
+ <article>
<?php if(x($page,'nav')) echo $page['nav']; ?>
<aside><?php if(x($page,'aside')) echo $page['aside']; ?></aside>
<section><?php if(x($page,'content')) echo $page['content']; ?>
<div id="page-footer"></div>
- <div id="pause"></div> - </section> + <div id="pause"></div>
+ </section>
<right_aside><?php if(x($page,'right_aside')) echo $page['right_aside']; ?></right_aside>
<footer><?php if(x($page,'footer')) echo $page['footer']; ?></footer>
+ </article>
</body>
</html>
|