Sha256: 98eedf03895654efafe033ebcfa5d6b5f3b088a863abcf65aa0cd837f43b114e
Contents?: true
Size: 832 Bytes
Versions: 1
Compression:
Stored size: 832 Bytes
Contents
<div id="{{ include.id }}" class="vertical-tabset"> {%- for tab in include.tabs -%} {%- capture tab-id -%}{{ tab.id | default: tab.title | slugify }}{{ forloop.index }}{%- endcapture -%} <div id="tab-{{ 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 }}%;"> <h2>{{ tab.title }}</h2> <p>{{ tab.content }}</p> </section> </div> {%- endfor -%} </div>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
jekyll-theme-consulting-0.9.1 | _includes/tabs.html |