kcc-gem-theme 1.61.45 → 1.61.46
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/_includes/tabbed-content.html +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c8af73f89bc9c9b23e77ed41dbb4addee703fc73da31add0f5a705b1d2022f2f
|
|
4
|
+
data.tar.gz: 3eb29ee0ba20c0e6d3cf7557dee99dbbf1b459e57702584a79b0ca8e299ac8e4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8425b7a8fe54602a7d34d4cda38273bc64c327d86f9bbc114da45caf109f784c69bf0424c0fa04624f2ea4902cf5044127484c6e9c5eeac66bc455300bcc62ab
|
|
7
|
+
data.tar.gz: 631eab68cd93dbd14abe5aa2ceae8fb4cf00e6cdff3acfccf601c4bc71ff3275f1260eae8dca9bfd79b34b852a7647b40322d72b6eb5208f6d2228ab6c6439ec
|
|
@@ -8,13 +8,13 @@
|
|
|
8
8
|
{% assign tab_collection = site.tabs | where: "tabs_page", page_title | sort: "order" %}
|
|
9
9
|
{% for tab in tab_collection %}
|
|
10
10
|
<li class="nav-item">
|
|
11
|
-
<a class="nav-link{% if forloop.first == true %} active{% endif %}" id="{{ tab.name | downcase | replace: ' ', '-' }}-tab" data-toggle="tab" href="#{{ tab.name | downcase | replace: ' ', '-' }}" role="tab" aria-controls="{{ tab.name | downcase | replace: ' ', '-' }}" aria-selected="{% if forloop.first == true %}true{% else %}false{% endif %}">{{ tab.name }}</a>
|
|
11
|
+
<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>
|
|
12
12
|
</li>
|
|
13
13
|
{% endfor %}
|
|
14
14
|
</ul>
|
|
15
15
|
<div class="tab-content mt-3 px-1" id="{{ page.title | replace: ' ', '-' | downcase }}-content">
|
|
16
16
|
{% for tab in tab_collection %}
|
|
17
|
-
<div class="tab-pane fade{% if forloop.first == true %} show active{% endif %}" id="{{ tab.name | downcase | replace: ' ', '-' }}" role="tabpanel" aria-labelledby="{{ tab.name | downcase | replace: ' ', '-' }}-tab">
|
|
17
|
+
<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">
|
|
18
18
|
{{ tab.content }}
|
|
19
19
|
</div>
|
|
20
20
|
{% endfor %}
|