yet another round, with 2 new Plugins Tabs and Raw (from raw html)
[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>
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>
12 {% endfor %}
13 </div>