jekyll-theme-gerbera 2.1.0 → 2.1.1
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/_layouts/default.html +31 -31
- 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: dcec3987fef9dd05c62cd7e4123477a258194c2a
|
4
|
+
data.tar.gz: 21172ec259fbcd5e100002727e9e5a3d88bdbab7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 198dd527c81512c2e339b90ade746d4395f973ba31b77b11f03b71c25c05303e2deaaec968bda74bf30d86cf2621ddb4af84dcd8500d2c558e846351e0a0bfc2
|
7
|
+
data.tar.gz: 2adba04243a852a88c752f52e76cb26e8619a39978b7eb66e934c05eadf690dd7ff83b06342077b99d404b3373fe6720aca582566053941bfd3d3f516519298e
|
data/_layouts/default.html
CHANGED
@@ -1,31 +1,31 @@
|
|
1
|
-
---
|
2
|
-
layout: bare
|
3
|
-
---
|
4
|
-
|
5
|
-
{% include menubar.html %}
|
6
|
-
<section>
|
7
|
-
<div class="documentationContent">
|
8
|
-
<div class="inner-content">
|
9
|
-
{{ content }}
|
10
|
-
|
11
|
-
{% assign collection = page.collection %}
|
12
|
-
{% assign docs = site
|
13
|
-
{% if docs %}
|
14
|
-
{% assign last_url = "" %}
|
15
|
-
{% assign sorted_docs = docs | sort:"order","last" %}
|
16
|
-
{% for doc in sorted_docs %}
|
17
|
-
{% if last_url == page.url %}
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
{% endif %}
|
24
|
-
{% assign last_url = doc.url %}
|
25
|
-
{% endfor %}
|
26
|
-
{% endif %}
|
27
|
-
</div>
|
28
|
-
|
29
|
-
|
30
|
-
</div>
|
31
|
-
</section>
|
1
|
+
---
|
2
|
+
layout: bare
|
3
|
+
---
|
4
|
+
|
5
|
+
{% include menubar.html %}
|
6
|
+
<section>
|
7
|
+
<div class="documentationContent">
|
8
|
+
<div class="inner-content">
|
9
|
+
{{ content }}
|
10
|
+
|
11
|
+
{% assign collection = page.collection %}
|
12
|
+
{% assign docs = site[collection] %}
|
13
|
+
{% if docs %}
|
14
|
+
{% assign last_url = "" %}
|
15
|
+
{% assign sorted_docs = docs | sort:"order","last" %}
|
16
|
+
{% for doc in sorted_docs %}
|
17
|
+
{% if last_url == page.url %}
|
18
|
+
<a class="read-next" href="{{ site.baseurl }}{{ doc.url }}">
|
19
|
+
<span class="read-next-continue">Continue Reading →</span>
|
20
|
+
<span class="read-next-title">{{doc.title}}</span>
|
21
|
+
</a>
|
22
|
+
{% break %}
|
23
|
+
{% endif %}
|
24
|
+
{% assign last_url = doc.url %}
|
25
|
+
{% endfor %}
|
26
|
+
{% endif %}
|
27
|
+
</div>
|
28
|
+
|
29
|
+
{% include sidebar.html %}
|
30
|
+
</div>
|
31
|
+
</section>
|