Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2018-04-05 13:22:01 +0300
committerJulius Härtl <jus@bitgrid.net>2018-04-05 13:22:01 +0300
commit30e76f9f14d901025e245d9900b7ca1d3ff168ad (patch)
treedc136b5f060f5128138c2ad8b1bcaabd1feb8c7b /core/templates
parentbbeb3402b6bc778de393b6da1b5fdc214f825b16 (diff)
Add footer to public page template
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'core/templates')
-rw-r--r--core/templates/layout.public.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/core/templates/layout.public.php b/core/templates/layout.public.php
index 61b66144502..2317a7b36ef 100644
--- a/core/templates/layout.public.php
+++ b/core/templates/layout.public.php
@@ -76,6 +76,11 @@
<div id="content" class="app-<?php p($_['appid']) ?>" role="main">
<?php print_unescaped($_['content']); ?>
</div>
+ <?php if($template->getFooterVisible()) { ?>
+ <footer>
+ <p class="info"><?php print_unescaped($theme->getLongFooter()); ?></p>
+ </footer>
+ <?php } ?>
</div>
</body>