Created
October 25, 2014 13:37
-
-
Save atyourlibrary/d9a1af3faa94feb46f0b to your computer and use it in GitHub Desktop.
Optional Template
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<title>Basic Bootstrap Template</title> | |
<!-- Bootstrap --> | |
<!-- Latest compiled and minified CSS --> | |
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css"> | |
<!-- Our Custom CSS styling --> | |
<link rel="stylesheet" href="app.css"> | |
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries --> | |
<!-- WARNING: Respond.js doesn't work if you view the page via file:// --> | |
<!--[if lt IE 9]> | |
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script> | |
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> | |
<![endif]--> | |
</head> | |
<body> | |
<div class="container"> | |
<!-- Banner with logo and social media links --> | |
<div class="row"> | |
<div class="col-sm-7"> | |
<img src="img/logo.png" alt="site logo" class="img-responsive"> | |
</div> | |
<div class="col-sm-5"> | |
<ul class="list-inline pull-right"> | |
<li><a href="#">Facebook</a></li> | |
<li><a href="#">Twitter</a></li> | |
<li><a href="#">Pinterest</a></li> | |
</ul> | |
</div> | |
</div> | |
<!-- Navigation Bar --> | |
<div class="row"> | |
<div class="col-sm-12"> | |
<nav class="navbar navbar-inverse" role="navigation"> | |
<!-- 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-example-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="#">Brand</a> | |
</div> | |
<!-- Collect the nav links, forms, and other content for toggling --> | |
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1"> | |
<ul class="nav navbar-nav"> | |
<li class="active"><a href="#">Link</a></li> | |
<li class="dropdown"> | |
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Dropdown <span class="caret"></span></a> | |
<ul class="dropdown-menu" role="menu"> | |
<li><a href="#">Action</a></li> | |
<li class="divider"></li> | |
<li><a href="#">Separated link</a></li> | |
</ul> | |
</li> | |
</ul> | |
<form class="navbar-form navbar-right" role="search"> | |
<div class="form-group"> | |
<input type="text" class="form-control" placeholder="Search"> | |
</div> | |
<button type="submit" class="btn btn-default">Submit</button> | |
</form> | |
</div><!-- /.navbar-collapse --> | |
</nav> | |
</div> | |
</div> | |
<!-- Main Content --> | |
<div class="row"> | |
<div class="col-sm-12"> | |
Put options here | |
</div> | |
</div> | |
<hr/> | |
<!-- Footer --> | |
<div class="row"> | |
<div class="col-sm-4"> | |
<strong>Hours</strong> | |
<ul class="list-unstyled"> | |
<li>M-F 9-8</li> | |
<li>Sat 8-8</li> | |
<li>Sun 12-6</li> | |
</ul> | |
</div> | |
<div class="col-sm-4"> | |
<strong>Contact us</strong> | |
<ul class="list-unstyled"> | |
<li>(555) 555-1212</li> | |
<li>help@thelibrary.org</li> | |
</ul> | |
</div> | |
<div class="col-sm-4"> | |
<strong>Visit us</strong> | |
<ul class="list-unstyled"> | |
<li>123 S. Main St.</li> | |
<li>Hometown, USA</li> | |
</ul> | |
</div> | |
</div> | |
</div> | |
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) --> | |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> | |
<!-- Include all compiled plugins (below), or include individual files as needed --> | |
<!-- Latest compiled and minified JavaScript --> | |
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment