Skip to content

Instantly share code, notes, and snippets.

@elmarputz
Created March 4, 2017 07:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save elmarputz/969a1d9544c934100f31405870134d43 to your computer and use it in GitHub Desktop.
Save elmarputz/969a1d9544c934100f31405870134d43 to your computer and use it in GitHub Desktop.
bookshop header
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>SCM4 Book Shop</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="assets/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/bootstrap/css/bootstrap-theme.min.css" rel="stylesheet">
<link href="assets/main.css" rel="stylesheet">
</head>
<body>
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="/">SCM 4 Bookshop (V 2.0)</a>
</div>
<div class="navbar-collapse collapse" id="bs-navbar-collapse-1">
<ul class="nav navbar-nav">
<li <?php if ($view === 'welcome') { ?>class="active"<?php } ?>><a href="index.php">Home</a></li>
<li <?php if ($view === 'list') { ?>class="active"<?php } ?>><a href="index.php?view=list">List</a></li>
<li <?php if ($view === 'search') { ?>class="active"<?php } ?>><a href="index.php?view=search">Search</a></li>
<li <?php if ($view === 'checkout') { ?>class="active"<?php } ?>><a href="index.php?view=checkout">Checkout</a></li>
</ul>
<ul class="nav navbar-nav navbar-right login">
<li>
<a href="index.php?view=checkout">
<span class="badge"><?php echo Util::escape($cartSize); ?></span> <span class="glyphicon glyphicon-shopping-cart" aria-hidden="true"></span></a>
</li>
<li class="dropdown">
<?php if ($user == null): ?>
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false">
Not logged in!
<b class="caret"></b>
</a>
<ul class="dropdown-menu" role="menu">
<li>
<a href="index.php?view=login">Login now</a>
</li>
</ul>
<?php else: ?>
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false">
Logged in as <span class="badge"><?php echo Util::escape($user->getUserName()); ?></span>
<b class="caret"></b>
</a>
</a>
<ul class="dropdown-menu" role="menu">
<li class="centered">
<form method="post" action="<?php echo Util::action('logout'); ?>">
<input class="btn btn-xs" role="button" type="submit" value="Logout" />
</form>
</li>
</ul>
<?php endif; ?>
</li>
</ul> <!-- /. login -->
</div><!--/.nav-collapse -->
</div>
</div>
<div class="container">
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment