Friendica Communications Platform
(please note that this is a clone of the repository at github, issues are handled there)
https://friendi.ca
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
608 B
17 lines
608 B
<!DOCTYPE html > |
|
<html> |
|
<head> |
|
<title><?php if(x($page,'title')) echo $page['title'] ?></title> |
|
<?php if(x($page,'htmlhead')) echo $page['htmlhead'] ?> |
|
</head> |
|
<body> |
|
<header><?php if(x($page,'header')) echo $page['header']; ?></header> |
|
<nav><div id="top-margin"></div><?php if(x($page,'nav')) echo $page['nav']; ?></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> |
|
</section> |
|
<footer><?php if(x($page,'footer')) echo $page['footer']; ?></footer> |
|
</body> |
|
</html> |
|
|
|
|