Sha256: 6fd1add9b4ad60733304976651f6288d0e545e6724e037200628f67daf81b4f3

Contents?: true

Size: 968 Bytes

Versions: 41

Compression:

Stored size: 968 Bytes

Contents

{%- assign show-title = include.show-title | default: true -%}
<div {% if include.id %}id="{{ include.id }}"{% endif %} class="vertical-tabset">
    {%- for tab in include.tabs -%}
    {%- capture tab-id -%}tab{{ forloop.index }}-{{ tab.id | default: tab.title | slugify }}{%- endcapture -%}
    <div id="{{ tab-id }}" class="vertical-tab">
        {%- if forloop.first == true -%}
        <input type="radio" name="{{ include.id }}" id="option-{{ tab-id }}" checked>
        {%- else -%}
        <input type="radio" name="{{ include.id }}" id="option-{{ tab-id }}">
        {%- endif -%}
        <label for="option-{{ tab-id }}" style="width: {{ include.header-width | default: 30 }}%;">{{ tab.title }}</label>
        <section class="tab-panel" style="left: {{ include.header-width | default: 30 }}%;">
            {% if show-title == true %}<h2>{{ tab.title }}</h2>{% endif %}
            {{ tab.content }}
        </section>
    </div>
    {%- endfor -%}
</div>

Version data entries

41 entries across 41 versions & 1 rubygems

Version Path
jekyll-theme-consulting-0.11.24 _includes/tabs.html
jekyll-theme-consulting-0.11.23 _includes/tabs.html
jekyll-theme-consulting-0.11.22 _includes/tabs.html
jekyll-theme-consulting-0.11.21 _includes/tabs.html
jekyll-theme-consulting-0.11.20 _includes/tabs.html
jekyll-theme-consulting-0.11.19 _includes/tabs.html
jekyll-theme-consulting-0.11.18 _includes/tabs.html
jekyll-theme-consulting-0.11.17 _includes/tabs.html
jekyll-theme-consulting-0.11.15 _includes/tabs.html
jekyll-theme-consulting-0.11.14 _includes/tabs.html
jekyll-theme-consulting-0.11.13 _includes/tabs.html
jekyll-theme-consulting-0.11.12 _includes/tabs.html
jekyll-theme-consulting-0.11.11 _includes/tabs.html
jekyll-theme-consulting-0.11.10 _includes/tabs.html
jekyll-theme-consulting-0.11.9 _includes/tabs.html
jekyll-theme-consulting-0.11.8 _includes/tabs.html
jekyll-theme-consulting-0.11.7 _includes/tabs.html
jekyll-theme-consulting-0.11.6 _includes/tabs.html
jekyll-theme-consulting-0.11.5 _includes/tabs.html
jekyll-theme-consulting-0.11.4 _includes/tabs.html