Не работает должным образом пример вида:
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title></title>
<link href="css/bootstrap.css" rel="stylesheet" type="text/css">
<link href="css/bootstrap-responsive.css" rel="stylesheet" type="text/css">
<!-- HTML5 shim for IE backwards compatibility -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<div class="container-fluid">
<section class="row-fluid">
<aside class="span3">
<p>Here is a left column </p>
</aside>
<article class="span9">
<h2>Article title</h2>
<p>Here is the main content area</p>
</article>
</section>
<section class="row-fluid">
<article class="span9 offset3">
<h2>Another Article</h2>
<p>Here is another article.</p>
</article>
</section>
<footer class="span2 offset10">
©
</footer>
</div>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script src="js/bootstrap.min.js"></script>
</body>
</html>
'
Вместо левой и правой колонки все позиционируется друг за другом. Подскажите, в чем ошибка?