Add an article to default.php to allow for fixed width themes, without breaking anything we've already got.

This commit is contained in:
Thomas Willingham 2013-05-29 02:20:44 +01:00
parent 0daaf35ff8
commit 3cfde2c177

View File

@ -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>