Skip to content
This repository has been archived by the owner on Oct 30, 2021. It is now read-only.

Update error.php #25

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 11 additions & 9 deletions error.php
Original file line number Diff line number Diff line change
Expand Up @@ -152,13 +152,19 @@
</div>
<?php endif ?>

<div class="navbar navbar-inverse navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<a class="brand" href="<?php echo $this->baseurl; ?>"><?php echo htmlspecialchars($app->getCfg('sitename')) ?></a>
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Wouldn't we also want the hamburger icon (https://github.com/construct-framework/bootstruct/blob/develop/index.php#L64-68) before here as well?

<div class="nav-collapse collapse">
<?php echo $renderer->render('nav', $raw, null) ?>
</div>
</div>
</div>
</div>

<header id="header" class="clear clearfix">
<div class="gutter">

<h1 id="logo">
<a href="<?php echo $this->baseurl ?>/" title="<?php echo htmlspecialchars($app->getCfg('sitename')) ?>"><?php echo $this->baseurl ?></a>
</h1>

<?php echo $renderer->render('header', $jexhtml, null) ?>

<nav>
Expand Down Expand Up @@ -199,10 +205,6 @@

<?php echo $renderer->render('breadcrumbs', $raw, null) ?>

<nav id="nav" class="clear">
<?php echo $renderer->render('nav', $raw, null) ?>
</nav>

<div id="content-container" class="clear clearfix">
<?php if ($navBelowClass) : ?>
<div id="nav-below" class="clearfix">
Expand Down