I want a simple two-column layout. With the code below, the columns are not side by side but instead are following the html default block-level flow. I am wondering if I am missing some step with installing bootstrap-sass into the rails app.
Relevant Gems in Gemfile:
gem 'sass-rails'
gem 'bootstrap-sass', '~> 3.3.1.0'
gem 'autoprefixer-rails'
gem 'simple_form'
app/assets/stylesheets/application.css.scss
/*
*= require_tree .
*= require_self
*/
@import "bootstrap-sprockets";
@import "bootstrap";
app/assets/javascripts/application.js
//= require jquery
//= require jquery_ujs
//= require turbolinks
//= require bootstrap-sprockets
//= require_tree .
app/views/layouts/application.html.erb
<body>
<div class="container-fluid">
<div class="row-fluid">
<div class="span8">
<%= yield %>
</div>
<div class="span4">
<h2> Should be the sideBar</h2>
<p>
Contain within the second column.
</p>
</div>
</div>
</div>
</body>