just-the-umbrel-docs 0.0.6 → 0.0.7
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.html +3 -4
- data/_layouts/default.html +1 -1
- data/_sass/navigation.scss +0 -1
- 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: d16e2dfb96a77c04cc2d3498798b044c5be24280633735adf3b265dd5e33ebe5
|
|
4
|
+
data.tar.gz: 1a90c92b65ae7b2737817a567ffec584465294fe12792ab629ab0d8675106725
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1d62dc238b1a8f4c61377b3e54ea796adb484caa85d3f7e559d14ed2319480177fac70b9e7e50c38c6a9e8bc72a088ae235f6cdceb54079852a7c7bd1e2caeeb
|
|
7
|
+
data.tar.gz: e581b68f9fa25a7bcb86d1a40590d4e431f2f7e98f79363fdd6bfc077aca24e8c6a5b471785f25cf0f3794a256bd4d43a1b36c419787b0ee478590be617804d0
|
data/_includes/nav.html
CHANGED
|
@@ -1,6 +1,4 @@
|
|
|
1
|
-
<
|
|
2
|
-
<a href="/de/" class="languageLink"><img src="/assets/images/flags/uk.svg"></a>
|
|
3
|
-
<ul class="nav-list" style="padding-top: 0;">
|
|
1
|
+
<ul class="nav-list">
|
|
4
2
|
{%- assign titled_pages = include.pages
|
|
5
3
|
| where_exp:"item", "item.title != nil" -%}
|
|
6
4
|
|
|
@@ -66,7 +64,8 @@
|
|
|
66
64
|
{%- if node.has_children -%}
|
|
67
65
|
<a href="#" class="nav-list-expander"><svg viewBox="0 0 24 24"><use xlink:href="#svg-arrow-right"></use></svg></a>
|
|
68
66
|
{%- endif -%}
|
|
69
|
-
|
|
67
|
+
{% capture nodelink %}{{ site.baseurl_root }}/{{ site.lang }}{{ node.url }}{% endcapture %}
|
|
68
|
+
<a href="{{ nodelink }}" class="nav-list-link{% if page.url == node.url %} active{% endif %}">{% t node.title %}</a>
|
|
70
69
|
{%- if node.has_children -%}
|
|
71
70
|
{%- assign children_list = pages_list | where: "parent", node.title -%}
|
|
72
71
|
<ul class="nav-list ">
|
data/_layouts/default.html
CHANGED
|
@@ -66,7 +66,7 @@ layout: table_wrappers
|
|
|
66
66
|
{% endif %}
|
|
67
67
|
</nav>
|
|
68
68
|
<footer class="site-footer">
|
|
69
|
-
This site uses <a href="https://github.com/pmarsceill/just-the-docs">Just the Docs</a>, a documentation theme for Jekyll.
|
|
69
|
+
This site uses Just the Umbrel Docs, a fork of <a href="https://github.com/pmarsceill/just-the-docs">Just the Docs</a>, a documentation theme for Jekyll.
|
|
70
70
|
</footer>
|
|
71
71
|
</div>
|
|
72
72
|
<div class="main" id="top">
|
data/_sass/navigation.scss
CHANGED