friendica/view/default.php

16 lines
394 B
PHP
Raw Normal View History

2010-07-02 01:48:07 +02:00
<!DOCTYPE html >
<html>
<head>
<title><?php echo $page['title'] ?></title>
<?php echo $page['htmlhead'] ?>
</head>
<body>
<header><?php echo $page['header']; ?></header>
<nav><?php echo $page['nav']; ?></nav>
<aside><?php echo $page['aside']; ?></aside>
<section><?php echo $page['content']; ?></section>
<footer><?php echo $page['footer']; ?></footer>
</body>
</html>