Hypolite Petovan
2cf3ed6d7c
- [frio] Add page wrapper to minimal template (for sitewide theme settings)
34 lines
950 B
PHP
34 lines
950 B
PHP
<!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>
|
|
<body class="minimal">
|
|
<section>
|
|
<div class="generic-page-wrapper">
|
|
<?php if(!empty($page['content'])) echo $page['content']; ?>
|
|
</div>
|
|
<div id="page-footer"></div>
|
|
</section>
|
|
<!-- Modal -->
|
|
<div id="modal" class="modal fade" tabindex="-1" role="dialog">
|
|
<div class="modal-dialog modal-full-screen">
|
|
<div class="modal-content">
|
|
<div id="modal-header" class="modal-header">
|
|
<button id="modal-cloase" type="button" class="close" data-dismiss="modal">
|
|
×
|
|
</button>
|
|
<h4 id="modal-title" class="modal-title"></h4>
|
|
</div>
|
|
<div id="modal-body" class="modal-body">
|
|
<!-- /# content goes here -->
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
|