fix the tabs widget
[unfold.git] / plugins / templates / tabs.html
1 {# could try to set class='active' on the one we want to highlight #}
2 <ul class="nav nav-tabs" id='{{ uuid }}'>
3 {% for son in sons %}
4 <li> <a href="#{{ son.uuid }}" data-toggle="tab">{{ son.title }}</a> </li>
5 {% endfor %}
6 </ul><!--nav-tabs-->
7 <div class="tab-content">
8 {% for son in sons %}
9 <div class="tab-pane fade in" id="{{ son.uuid }}">
10 {{ son.rendered }}
11 </div><!--tab-pane-->
12 {% endfor %}
13 </div><!--tab-content-->