kcc-gem-theme 1.76.82 → 1.77.82
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/nav-global-bottom.html +4 -7
- 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: 1780c919058f86ae4928cf5c16b6f72c759c532d25a2e61b8f9cdb0019cbd1af
|
4
|
+
data.tar.gz: ea7a13ed03a5e6a4c90e78f861e7b2598a5217e5006b88e4ed9ed6607c9527b4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 83b2628d694cab127a380e5abd3d08026f6591843e3d6c8f20c35468e246e52e7ff7f4697ea659335a8eb041235624fa7af15bfb390833c621caee147410340a
|
7
|
+
data.tar.gz: 2bcedaacb238ea4b147057b88b5a9dae7095463582fb1c3220f244cedb4d6d04a80ecd21e63b68c05685f551b474cb2035e893d01eac21ef6c552ddf6a0a6d6a
|
@@ -28,15 +28,12 @@
|
|
28
28
|
{% assign site_name_lowercase = site.site_name | downcase | replace: ' ', '-' | replace: '&', 'and' %}
|
29
29
|
<a class="dropdown-item typography__dropdown--category" href="{% if item.link_href contains site_name_lowercase %}{{ page.baseurl }}{% else %}/{{ item.link_href }}{% endif %}">{{ item.link_text }}</a>
|
30
30
|
{%- endif -%}
|
31
|
-
{%
|
31
|
+
{% assign alphabetical_links = item.dropdown | sort: "text" %}
|
32
|
+
{% for link in alphabetical_links %}
|
32
33
|
{% if item.link_href contains site_name_lowercase %}
|
33
|
-
{
|
34
|
-
<a class="dropdown-item" href="{% if link.href contains 'http://' or link.href contains 'https://' %}{{ link.href }}{% else %}{{ page.baseurl }}{{ link.href }}{% endif %}">{{ link.text }}</a>{% else %}<div class="dropdown-divider"></div>
|
35
|
-
{% endif %}
|
34
|
+
<a class="dropdown-item" href="{% if link.href contains 'http://' or link.href contains 'https://' %}{{ link.href }}{% else %}{{ page.baseurl }}{{ link.href }}{% endif %}">{{ link.text }}</a>
|
36
35
|
{%- else -%}
|
37
|
-
{
|
38
|
-
<a class="dropdown-item" href="{% if link.href contains 'http://' or link.href contains 'https://' %}{{ link.href }}{% else %}/{{ item.link_href }}/{{ link.href }}{% endif %}">{{ link.text }}</a>{% else %}<div class="dropdown-divider"></div>
|
39
|
-
{% endif %}
|
36
|
+
<a class="dropdown-item" href="{% if link.href contains 'http://' or link.href contains 'https://' %}{{ link.href }}{% else %}/{{ item.link_href }}/{{ link.href }}{% endif %}">{{ link.text }}</a>
|
40
37
|
{%- endif -%}
|
41
38
|
{%- endfor -%}
|
42
39
|
</div>
|