2024-08-24 13:50:10 +00:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
* Copyright (C) 2010-2024, the Friendica project
|
|
|
|
* SPDX-FileCopyrightText: 2010-2024 the Friendica project
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
2024-08-24 16:55:55 +00:00
|
|
|
*
|
2024-08-24 13:50:10 +00:00
|
|
|
* The site template for pure content (e.g. (modals)
|
|
|
|
*
|
|
|
|
* This template is used e.g for bs modals. So outputs
|
|
|
|
* only the pure content
|
|
|
|
*/
|
2024-08-24 17:03:20 +00:00
|
|
|
?>
|
2024-08-24 13:50:10 +00:00
|
|
|
|
2024-07-30 20:13:08 +00:00
|
|
|
<!DOCTYPE html>
|
2017-05-11 12:54:26 +00:00
|
|
|
<html>
|
|
|
|
<head>
|
2018-11-30 14:06:22 +00:00
|
|
|
<title><?php if(!empty($page['title'])) echo $page['title'] ?></title>
|
2019-12-30 22:00:08 +00:00
|
|
|
<script>var baseurl="<?php echo Friendica\DI::baseUrl() ?>";</script>
|
2018-11-30 14:06:22 +00:00
|
|
|
<?php if(!empty($page['htmlhead'])) echo $page['htmlhead'] ?>
|
2017-05-11 12:54:26 +00:00
|
|
|
</head>
|
2019-04-26 02:01:43 +00:00
|
|
|
<body class="minimal">
|
|
|
|
<section><?php if(!empty($page['content'])) echo $page['content']; ?>
|
2020-08-08 19:19:20 +00:00
|
|
|
<div id="page-footer">
|
|
|
|
<?php echo $page['footer'] ?? ''; ?>
|
|
|
|
</div>
|
2017-05-11 12:54:26 +00:00
|
|
|
</section>
|
|
|
|
</body>
|
|
|
|
</html>
|