summaryrefslogtreecommitdiffstats
path: root/core/templates/layout.base.php
diff options
context:
space:
mode:
authorJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2018-07-23 20:14:19 +0200
committerJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2018-07-24 11:01:11 +0200
commit0274507cb10b53cfd38bd0ae3810c26cdb172ad1 (patch)
tree7816c91efded77f8738f1eae44dad22d888cbe65 /core/templates/layout.base.php
parent262cb04c3ab4f102af206e7757707b4a20a53f41 (diff)
downloadnextcloud-server-0274507cb10b53cfd38bd0ae3810c26cdb172ad1.tar.gz
nextcloud-server-0274507cb10b53cfd38bd0ae3810c26cdb172ad1.zip
Acceptance and mobile navigation fixes
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'core/templates/layout.base.php')
-rw-r--r--core/templates/layout.base.php6
1 files changed, 5 insertions, 1 deletions
diff --git a/core/templates/layout.base.php b/core/templates/layout.base.php
index 2d4fc726661..8bb8e8ba3ca 100644
--- a/core/templates/layout.base.php
+++ b/core/templates/layout.base.php
@@ -18,6 +18,10 @@
</head>
<body id="body-public">
<?php include 'layout.noscript.warning.php'; ?>
- <?php print_unescaped($_['content']); ?>
+ <div id="content-wrapper">
+ <div id="content" class="app-public" role="main">
+ <?php print_unescaped($_['content']); ?>
+ </div>
+ </div>
</body>
</html>