2011-09-07 08:30:21 +02:00
<!DOCTYPE html>
< html lang = "en" >
< head >
< meta charset = "utf-8" >
< title > Bootstrap, from Twitter< / title >
< meta name = "description" content = "" >
< meta name = "author" content = "" >
<!-- Le HTML5 shim, for IE6 - 8 support of HTML elements -->
<!-- [if lt IE 9]>
< script src = "http://html5shim.googlecode.com/svn/trunk/html5.js" > < / script >
<![endif]-->
<!-- Le styles -->
2012-01-27 23:21:17 +01:00
< link href = "../docs/assets/css/bootstrap.css" rel = "stylesheet" >
2011-09-07 08:30:21 +02:00
< style type = "text/css" >
/* Override some defaults */
html, body {
background-color: #eee;
}
body {
padding-top: 40px; /* 40px to make the container go all the way to the bottom of the topbar */
}
.container > footer p {
text-align: center; /* center align it with the container */
}
.container {
2012-01-29 07:48:51 +01:00
width: 820px; /* downsize our container to make the content feel a bit tighter and more cohesive. NOTE: this removes two full columns from the grid, meaning you only go to 10 columns and not 12. */
2011-09-07 08:30:21 +02:00
}
/* The white background content wrapper */
.content {
background-color: #fff;
padding: 20px;
2012-01-25 19:09:26 +01:00
margin: 0 -20px 18px; /* negative indent the amount of the padding to maintain the grid system */
2011-09-07 08:30:21 +02:00
-webkit-border-radius: 0 0 6px 6px;
-moz-border-radius: 0 0 6px 6px;
border-radius: 0 0 6px 6px;
-webkit-box-shadow: 0 1px 2px rgba(0,0,0,.15);
-moz-box-shadow: 0 1px 2px rgba(0,0,0,.15);
box-shadow: 0 1px 2px rgba(0,0,0,.15);
}
/* Page header tweaks */
.page-header {
background-color: #f5f5f5;
padding: 20px 20px 10px;
margin: -20px -20px 20px;
}
/* Styles you shouldn't keep as they are for displaying this base example only */
2012-01-25 16:26:51 +01:00
.content .span7,
.content .span3 {
2011-09-07 08:30:21 +02:00
min-height: 500px;
}
/* Give a quick and non-cross-browser friendly divider */
2012-01-25 16:26:51 +01:00
.content .span3 {
2011-09-07 08:30:21 +02:00
margin-left: 0;
padding-left: 19px;
border-left: 1px solid #eee;
}
< / style >
<!-- Le fav and touch icons -->
< link rel = "shortcut icon" href = "images/favicon.ico" >
< link rel = "apple-touch-icon" href = "images/apple-touch-icon.png" >
< link rel = "apple-touch-icon" sizes = "72x72" href = "images/apple-touch-icon-72x72.png" >
< link rel = "apple-touch-icon" sizes = "114x114" href = "images/apple-touch-icon-114x114.png" >
< / head >
< body >
2012-01-27 23:21:17 +01:00
< div class = "navbar navbar-fixed-top" >
2011-10-11 18:46:02 +02:00
< div class = "navbar-inner" >
2011-09-07 08:30:21 +02:00
< div class = "container" >
2011-09-16 19:51:44 +02:00
< a class = "brand" href = "#" > Project name< / a >
2011-09-07 08:30:21 +02:00
< ul class = "nav" >
< li class = "active" > < a href = "#" > Home< / a > < / li >
< li > < a href = "#about" > About< / a > < / li >
< li > < a href = "#contact" > Contact< / a > < / li >
< / ul >
2011-10-11 18:46:02 +02:00
< form action = "" class = "form-search navbar-form pull-right" >
2011-09-08 18:43:37 +02:00
< input class = "input-small" type = "text" placeholder = "Username" >
< input class = "input-small" type = "password" placeholder = "Password" >
< button class = "btn" type = "submit" > Sign in< / button >
< / form >
2011-09-07 08:30:21 +02:00
< / div >
< / div >
< / div >
< div class = "container" >
< div class = "content" >
< div class = "page-header" >
< h1 > Page name < small > Supporting text or tagline< / small > < / h1 >
< / div >
< div class = "row" >
2012-01-25 16:26:51 +01:00
< div class = "span7" >
2011-09-07 08:30:21 +02:00
< h2 > Main content< / h2 >
< / div >
2012-01-25 16:26:51 +01:00
< div class = "span3" >
2011-09-07 08:30:21 +02:00
< h3 > Secondary content< / h3 >
< / div >
< / div >
< / div >
< footer >
2012-01-15 08:28:48 +01:00
< p > © Company 2012< / p >
2011-09-07 08:30:21 +02:00
< / footer >
< / div > <!-- /container -->
< / body >
< / html >