wai-website-theme 0.1.2.1 → 0.1.2.5
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/sidenav.html +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bbd07b78be8726d697b19ff9795d5dcb73b751bb
|
|
4
|
+
data.tar.gz: 3797aeca11b5a159d6b792d44230594d59384310
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6f321d9a485bfedf82038f6b304f1eafde10248681b32e757d84db172e8c9182053c5083bd6e42b6b0931cf468fca33ab8f47a282e0fd412905b6c204668fe39
|
|
7
|
+
data.tar.gz: 7fadca99b3a64ac99d1701084d3b0f5ccdd3f032f16925eac95d6ff79043cef02a86fe4e66d4d77d360f1bb24e1c265729fed197b7cf39895c6bec2d6aebf6b2
|
data/_includes/sidenav.html
CHANGED
|
@@ -22,7 +22,7 @@ The first section creates an array of page urls that are page urls of this colle
|
|
|
22
22
|
{% assign my_pages = site.documents | sort: "order" %}
|
|
23
23
|
{% for my_page in my_pages %}
|
|
24
24
|
{% unless my_page.nosidenav %}{% if pgs contains my_page.url %}
|
|
25
|
-
<li><a class="page-link" {% if my_page.url == page.url %} aria-current="page" {% endif %} href="{{ my_page.url | prepend: site.github.url }}">{% if my_page.url == page.url %}{% include_cached icon.html name="chevron-right" %} {% endif %}{% if my_page.nav_title %}{{ my_page.nav_title }}{% else %}{{ my_page.title }}{% endif %}</a></li>
|
|
25
|
+
<li><a class="page-link" {% if my_page.url == page.url %} aria-current="page" {% endif %} href="{{ my_page.url | prepend: site.github.url }}">{% if my_page.url == page.url %}{% include_cached icon.html name="chevron-right" %} {% endif %}{% if page.title_icon %}<svg class="icon-in-title" aria-hidden="true"><use xlink:href="{{site.github.url}}{{my_page.title_icon}}"></use></svg> {% endif %}{% if my_page.nav_title %}{{ my_page.nav_title }}{% else %}{{ my_page.title }}{% endif %}</a></li>
|
|
26
26
|
{% endif %}{% endunless %}
|
|
27
27
|
{% endfor %}
|
|
28
28
|
{% else %}
|
|
@@ -45,7 +45,7 @@ The first section creates an array of page urls that are page urls of this colle
|
|
|
45
45
|
{% assign my_pages = site.documents | sort: "order" %}
|
|
46
46
|
{% for my_page in my_pages %}
|
|
47
47
|
{% unless my_page.nosidenav %}{% if pgs contains my_page.url %}
|
|
48
|
-
<li><a class="page-link" {% if my_page.url == page.url %} aria-current="page" {% endif %} href="{{ my_page.url | prepend: site.github.url }}">{% if my_page.url == page.url %}{% include_cached icon.html name="chevron-right" %} {% endif %}{% if my_page.nav_title %}{{ my_page.nav_title }}{% else %}{{ my_page.title }}{% endif %}</a></li>
|
|
48
|
+
<li><a class="page-link" {% if my_page.url == page.url %} aria-current="page" {% endif %} href="{{ my_page.url | prepend: site.github.url }}">{% if my_page.url == page.url %}{% include_cached icon.html name="chevron-right" %} {% endif %}{% if page.title_icon %}<svg class="icon-in-title" aria-hidden="true"><use xlink:href="{{site.github.url}}{{my_page.title_icon}}"></use></svg> {% endif %}{% if my_page.nav_title %}{{ my_page.nav_title }}{% else %}{{ my_page.title }}{% endif %}</a></li>
|
|
49
49
|
{% endif %}{% endunless %}
|
|
50
50
|
{% endfor %}
|
|
51
51
|
|