panchroma

This is a simple Bootstrap skeleton. You can fork it to get a ready to use Bootstrap fiddle.

HTML

<script src="http://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/2.1.0/bootstrap.min.js"></script>
<div id="wrap">
  <!-- Wrap all page content here -->
  
    <div class="navbar navbar-inverse navbar-fixed-top">
      <div class="navbar-inner">
	        <div class="container">
            <a class="btn btn-navbar" data-toggle="collapse" data-target=".navbar-inverse-collapse">
	            <span class="icon-bar"></span>
	            <span class="icon-bar"></span>
	            <span class="icon-bar"></span>
	          </a>
	          <div class="nav-collapse collapse navbar-inverse-collapse">
	            <ul class="nav">
                <li><a href="home.html"><i class="icon-home"></i> Home</a></li>
              </ul>
            </div>
        </div>
      </div>
    </div> <!-- end of class navbar -->

    <div class="container">
      <div class="fluid-row">
        <div class="span4">
          <p>Something here</p>
        </div>
        <div class="span8">
          <p>Some content</p>
          <p>Some content</p>
          <p>Some content</p>
          <p>Some content</p>
          <p>Some content</p>
        </div>
      </div>
    </div> <!-- end of class container -->
  
  <div id="push"></div>
</div> <!-- end wrap -->
  

  <div id="footer">

    <div class="footer">
        <div class="container"> <!-- using container to left-align footer to the main content -->
          <p>My footer</p>
          <p>Some other content</p>
     </div> <!-- end of class footer -->

</div> <!-- end footer ID -->

CSS

@import url('http://twitter.github.com/bootstrap/assets/css/bootstrap.css');

body {
	       /* padding-top: 60px;  60px to make the container go all the way to the bottom of the topbar */
  background-color: #ECECEC
	      }

#footer {
background-color:#F4F4F4;	
}

html,
body {
height: 100%;
}
/* The html and body elements cannot have any padding or margin.*/
 
/* Wrapper for page content to push down footer */
#wrap {
min-height: 100%;
height: auto !important;
height: 100%; 
margin: 0 auto -100px;
}
/* Negative indent footer by it's height */

/* Set the fixed height of the footer here */ 
#push,
#footer {
height:100px;
}