diff options
author | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2018-06-25 09:26:43 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2018-07-20 23:35:21 +0200 |
commit | 842583038bb54c2787fb7a2d5ebd84a2fec849fd (patch) | |
tree | df4a84edf159d779a1f325a6df25132221243894 /core/templates/layout.public.php | |
parent | 52ec71c4b05cce98af59332904c77d619d5bfed0 (diff) | |
download | nextcloud-server-842583038bb54c2787fb7a2d5ebd84a2fec849fd.tar.gz nextcloud-server-842583038bb54c2787fb7a2d5ebd84a2fec849fd.zip |
Cleanup structure
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'core/templates/layout.public.php')
-rw-r--r-- | core/templates/layout.public.php | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/core/templates/layout.public.php b/core/templates/layout.public.php index 78f46f48a5a..07aff03127d 100644 --- a/core/templates/layout.public.php +++ b/core/templates/layout.public.php @@ -27,8 +27,7 @@ </head> <body id="<?php p($_['bodyid']);?>"> <?php include('layout.noscript.warning.php'); ?> -<header> - <div id="header" class="<?php p($_['header-classes']); ?>"> + <header id="header" class="<?php p($_['header-classes']); ?>"> <div class="header-left"> <span id="nextcloud"> <div class="logo logo-icon svg"></div> @@ -70,9 +69,7 @@ <?php } ?> </div> <?php } ?> - </div> -</header> -<div id="content-wrapper"> + </header> <div id="content" class="app-<?php p($_['appid']) ?>" role="main"> <?php print_unescaped($_['content']); ?> </div> @@ -81,7 +78,6 @@ <p class="info"><?php print_unescaped($theme->getLongFooter()); ?></p> </footer> <?php } ?> -</div> </body> </html> |