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 16:58:27 +00:00
|
|
|
?>
|
2024-07-30 20:13:08 +00:00
|
|
|
<!DOCTYPE html>
|
2017-05-11 12:54:26 +00:00
|
|
|
<html itemscope itemtype="http://schema.org/Blog" lang="<?php echo $lang; ?>">
|
|
|
|
<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>
|
|
|
|
<body>
|
2018-11-30 14:06:22 +00:00
|
|
|
<?php if(!empty($page['nav'])) echo $page['nav']; ?>
|
|
|
|
<aside><?php if(!empty($page['aside'])) echo $page['aside']; ?></aside>
|
2017-05-11 12:54:26 +00:00
|
|
|
<section>
|
2018-11-30 14:06:22 +00:00
|
|
|
<?php if(!empty($page['content'])) echo $page['content']; ?>
|
2017-05-11 12:54:26 +00:00
|
|
|
<div id="pause"></div> <!-- The pause/resume Ajax indicator -->
|
|
|
|
<div id="page-footer"></div>
|
|
|
|
</section>
|
2018-11-30 14:06:22 +00:00
|
|
|
<right_aside><?php if(!empty($page['right_aside'])) echo $page['right_aside']; ?></right_aside>
|
|
|
|
<footer><?php if(!empty($page['footer'])) echo $page['footer']; ?></footer>
|
2017-05-11 12:54:26 +00:00
|
|
|
</body>
|
|
|
|
</html>
|