I have implemented the left tab nav the same way that is in the boilerplate, with all the necessary resources, but the tabs aren't switching when the links are clicked:
<div class="tabbable tabs-left">
<ul class="nav nav-tabs">
<li class="active"> <a href="#lA" data-toggle="tab">Section 1</a>
</li>
<li class=""> <a href="#lB" data-toggle="tab">Section 2</a>
</li>
<li class=""> <a href="#lC" data-toggle="tab">Section 3</a>
</li>
</ul>
<div class="tab-content">
<div class="tab-pane active" id="lA">
<p>Section A.</p>
</div>
<div class="tab-pane" id="lB">
<p>Section B.</p>
</div>
<div class="tab-pane" id="lC">
<p>Section C.</p>
</div>
</div>
</div>
any ideas?