friendica/view/php/minimal.php

16 lines
444 B
PHP
Raw Normal View History

<!DOCTYPE html >
<html>
<head>
<title><?php if(!empty($page['title'])) echo $page['title'] ?></title>
<script>var baseurl="<?php echo Friendica\DI::baseUrl() ?>";</script>
<?php if(!empty($page['htmlhead'])) echo $page['htmlhead'] ?>
</head>
2019-04-26 04:01:43 +02:00
<body class="minimal">
<section><?php if(!empty($page['content'])) echo $page['content']; ?>
2020-08-08 21:19:20 +02:00
<div id="page-footer">
<?php echo $page['footer'] ?? ''; ?>
</div>
</section>
</body>
</html>