Bootstrap 3 Template
This is a simple Twitter Bootstrap 3 template. You can fork it to get a ready to use Bootstrap 3 fiddle.
by joshuaohana
HTML
<script src="//netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css">
<div>
<div class="container-fluid top-menu">top menu</div>
</div>
<div class="container-fluid">
<div class="row">
<div class="col-md-2 side-menu-view">
<p>content</p><p>content</p>
<p>content</p><p>content</p>
</div>
<div class="col-md-10 main-content-view">
<p>content</p><p>content</p><p>content</p><p>content</p><p>content</p><p>content</p>
<p>content</p><p>content</p><p>content</p><p>content</p><p>content</p><p>content</p>
<p>content</p><p>content</p><p>content</p><p>content</p><p>content</p><p>content</p>
<p>content</p><p>content</p><p>content</p><p>content</p><p>content</p><p>content</p>
</div>
</div>
</div>
CSS
.top-menu {
height: 47px;
background-color: blue;
}
.side-menu-view {
background-color: red;
border-right: solid 1px black;
height: 100%;
}
.main-content-view {
height: 100%;
}