Enable footer scripts in minimal view

This commit is contained in:
Hypolite Petovan 2020-08-08 15:19:20 -04:00
parent 7a5f2437f9
commit 4f37b14e42
2 changed files with 6 additions and 2 deletions

View File

@ -7,7 +7,9 @@
</head>
<body class="minimal">
<section><?php if(!empty($page['content'])) echo $page['content']; ?>
<div id="page-footer"></div>
<div id="page-footer">
<?php echo $page['footer'] ?? ''; ?>
</div>
</section>
</body>
</html>

View File

@ -10,7 +10,9 @@
<div class="generic-page-wrapper">
<?php if(!empty($page['content'])) echo $page['content']; ?>
</div>
<div id="page-footer"></div>
<div id="page-footer">
<?php echo $page['footer'] ?? ''; ?>
</div>
</section>
<!-- Modal -->
<div id="modal" class="modal fade" tabindex="-1" role="dialog">