Skip to content

Instantly share code, notes, and snippets.

@ashish01
Last active August 29, 2015 14:02
Show Gist options
  • Save ashish01/c9ed92e8b2747941b476 to your computer and use it in GitHub Desktop.
Save ashish01/c9ed92e8b2747941b476 to your computer and use it in GitHub Desktop.
Bootstrap boiler plate
@{
Layout = null;
}
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<title>Title</title>
<link href="@Url.Content("~/Content/bootstrap.css")" rel="stylesheet" type="text/css" />
<style type="text/css">
body {
padding-top: 100px;
font-family: Consolas;
}
</style>
</head>
<body>
<!-- Header -->
<div class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container-fluid">
<h4>Brand</h4>
</div>
</div>
</div>
<div class="container-fluid" id="app">
<div class="row-fluid">
<div class="span2"></div>
<div class="span8">
<div>
<h3>Heading</h3>
</div>
</div>
<div class="span2"></div>
</div>
</div>
<!-- Le javascript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="@Url.Content("~/Scripts/jquery-1.9.1.js")"></script>
<script src="@Url.Content("~/Scripts/bootstrap.js")"></script>
<script type="text/javascript">
var app = {}
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment