diff options
author | Thomas Willingham <founder@kakste.com> | 2013-05-29 02:20:44 +0100 |
---|---|---|
committer | Thomas Willingham <founder@kakste.com> | 2013-05-29 02:20:44 +0100 |
commit | 3cfde2c177144fa0c85faa5e73f622872355e3f9 (patch) | |
tree | 56211c4e75dd22aa9f3c717e5b242e84f477eebf | |
parent | 0daaf35ff8cc863ad95d68302fb14dbcea740374 (diff) | |
download | volse-hubzilla-3cfde2c177144fa0c85faa5e73f622872355e3f9.tar.gz volse-hubzilla-3cfde2c177144fa0c85faa5e73f622872355e3f9.tar.bz2 volse-hubzilla-3cfde2c177144fa0c85faa5e73f622872355e3f9.zip |
Add an article to default.php to allow for fixed width themes, without breaking anything we've already got.
-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>
|