Sha256: 18d57d14d3bf060a185d91b5dc1ce45d9e47ee6a4e01df909b2aedaa830deee4
Contents?: true
Size: 668 Bytes
Versions: 4
Compression:
Stored size: 668 Bytes
Contents
<div class="scrivito-tab-group"> <ul class="nav nav-tabs" role="tablist"> <% widget.tabs.each_with_index do |tab, i| %> <li role="presentation" class="<%= i == 0 ? 'active' : '' %>"> <a href="#tab-<%= widget.id %>-<%= i %>" aria-controls="home" role="tab" data-toggle="tab" class="<%= tab.background_color %>"> <%= scrivito_value tab.title %> </a> </li> <% end %> </ul> <div class="tab-content"> <% widget.tabs.each_with_index do |tab, i| %> <%= scrivito_tag :div, tab, :content, id: "tab-#{widget.id}-#{i}", class: "#{tab.background_color} tab-pane #{'active' if i == 0}" %> <% end %> </div> </div>
Version data entries
4 entries across 4 versions & 1 rubygems