Sha256: 461a54146f09c1c71cd5c47e226dd0afd4f73881c8382c0877ce846a47668e2c

Contents?: true

Size: 1.55 KB

Versions: 13

Compression:

Stored size: 1.55 KB

Contents

<div class="row editor-link">
  <div class="col editor-link mb-3">
    <a href="cloudcannon:collections/_tabs/" class="btn btn-success editor-button">Edit Tabs Collection</a>
  </div>
</div>
<ul class="nav nav-tabs" id="{{ page.title | replace: ' ', '-' | downcase }}" role="tablist">
  {% assign page_title = page.title %}
  {% assign tab_collection = site.tabs | where: "tabs_page", page_title | sort: "order" %}
  {% for tab in tab_collection %}
  <li class="nav-item">
    <a class="nav-link{% if forloop.first == true %} active{% endif %}" id="{{ tab.name | downcase | replace: ' ', '-' | replace: '&', 'and' | remove: '(' | remove: ')' | remove: '!' }}-tab" data-toggle="tab" href="#{{ tab.name | downcase | replace: ' ', '-' | replace: '&', 'and' | remove: '(' | remove: ')' | remove: '!' }}" role="tab" aria-controls="{{ tab.name | downcase | replace: ' ', '-' | replace: '&', 'and' | remove: '(' | remove: ')' | remove: '!' }}" aria-selected="{% if forloop.first == true %}true{% else %}false{% endif %}">{{ tab.name }}</a>
  </li>
  {% endfor %}
</ul>
<div class="tab-content mt-3 px-1" id="{{ page.title | replace: ' ', '-' | downcase }}-content">
  {% for tab in tab_collection %}
  <div class="tab-pane fade{% if forloop.first == true %} show active{% endif %}" id="{{ tab.name | downcase | replace: ' ', '-' | replace: '&', 'and' | remove: '(' | remove: ')' | remove: '!' }}" role="tabpanel" aria-labelledby="{{ tab.name | downcase | replace: ' ', '-' | replace: '&', 'and' | remove: '(' | remove: ')' | remove: '!' }}-tab">
    {{ tab.content }}
  </div>
  {% endfor %}
</div>

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
kcc-gem-theme-1.65.54 _includes/tabbed-content.html
kcc-gem-theme-1.65.53 _includes/tabbed-content.html
kcc-gem-theme-1.65.52 _includes/tabbed-content.html
kcc-gem-theme-1.64.52 _includes/tabbed-content.html
kcc-gem-theme-1.64.51 _includes/tabbed-content.html
kcc-gem-theme-1.64.50 _includes/tabbed-content.html
kcc-gem-theme-1.63.50 _includes/tabbed-content.html
kcc-gem-theme-1.62.50 _includes/tabbed-content.html
kcc-gem-theme-1.62.49 _includes/tabbed-content.html
kcc-gem-theme-1.61.49 _includes/tabbed-content.html
kcc-gem-theme-1.61.48 _includes/tabbed-content.html
kcc-gem-theme-1.61.47 _includes/tabbed-content.html
kcc-gem-theme-1.61.46 _includes/tabbed-content.html