Browse Source

Step one, open guest layout for different styles.

Conflicts:
	core/templates/layout.guest.php

Step one, open guest layout for different styles.
tags/v8.0.0alpha1
Lukas Reschke 9 years ago
parent
commit
7d2c521b46
2 changed files with 11 additions and 7 deletions
  1. 10
    7
      core/templates/layout.guest.php
  2. 1
    0
      lib/private/templatelayout.php

+ 10
- 7
core/templates/layout.guest.php View File

@@ -32,17 +32,20 @@
?>
<?php endforeach; ?>
</head>
<body id="body-login">
<body id="<?php p($_['bodyid']);?>">
<noscript><div id="nojavascript"><div><?php print_unescaped($l->t('This application requires JavaScript for correct operation. Please <a href="http://enable-javascript.com/" target="_blank">enable JavaScript</a> and reload the page.')); ?></div></div></noscript>
<div class="wrapper"><!-- for sticky footer -->
<div class="v-align"><!-- vertically centred box -->
<header><div id="header">
<div class="logo svg"></div>
<div id="logo-claim" style="display:none;"><?php p($theme->getLogoClaim()); ?></div>
</div></header>

<?php if ($_['bodyid'] === 'body-login' ): ?>
<header>
<div id="header">
<div class="logo svg"></div>
<div id="logo-claim" style="display:none;"><?php p($theme->getLogoClaim()); ?></div>
</div>
</header>
<?php endif; ?>
<?php print_unescaped($_['content']); ?>
<div class="push"></div><!-- for sticky footer -->
<div class="push"></div><!-- for sticky footer -->
</div>
</div>


+ 1
- 0
lib/private/templatelayout.php View File

@@ -63,6 +63,7 @@ class OC_TemplateLayout extends OC_Template {
parent::__construct('core', 'layout.guest', '', false);
} else if ($renderas == 'guest') {
parent::__construct('core', 'layout.guest');
$this->assign('bodyid', 'body-login');
} else {
parent::__construct('core', 'layout.base');
}

Loading…
Cancel
Save