Skip to content

Commit

Permalink
Restored gems-responsive for trafficlight fix due to fix in gems-resp…
Browse files Browse the repository at this point in the history
…onsive css
  • Loading branch information
jvangestel committed Sep 30, 2017
1 parent 7c8fea2 commit f80bf5e
Showing 1 changed file with 15 additions and 13 deletions.
28 changes: 15 additions & 13 deletions layouts/scripts/gems-responsive.phtml
Expand Up @@ -49,27 +49,29 @@
<?php

?>
<div class="row">
<div class="content">
<?php if ($this->navigation || $this->menuHtml || $this->subnav) { ?>
<div id="menu" role="navigation" class="col-sm-2">
<?php if ($this->subnav) {
echo $this->subnav->render($this);
} elseif ($this->menuHtml) {
echo $this->menuHtml;
} ?>
</div>
<div class="col-sm-10">
<div id="main-container" class="include-menu">
<?php } else { ?>
<div class="col-sm-10">
<?php } ?>
<div id="main-container">
<?php } ?>
<div id="main" class="container-fluid">
<?php
<?php
if ($this->main) {
echo $this->main->render($this);
}
echo $this->layout()->content; ?>
</div>
</div>
</div>
<?php if ($this->navigation || $this->menuHtml || $this->subnav ) { ?>
<div id="menu" role="navigation">
<?php if ($this->subnav) {
echo $this->subnav->render($this);
} elseif ($this->menuHtml) {
echo $this->menuHtml;
} ?>
</div>
<?php } ?>
</div>


Expand Down

0 comments on commit f80bf5e

Please sign in to comment.