jekyll-theme-jod 0.2.2 → 0.2.3
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/navigation.html +14 -0
- 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: 9d30bb1cd1bb0db19684f098d6ad39af920e8e0eab2510f3769fb56f209a0598
|
|
4
|
+
data.tar.gz: d01d07d87f45768da3a31ab1470c516d3a5a6308780364af89faa0c92511f63b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 27df7c6f688672598193e472e4f32a5726453073969f9fc6a9d4fde2519b2ede62aa57cfe938c556ebeaad226f738a6896ee0fa7a4075b855827e6d7e63261fa
|
|
7
|
+
data.tar.gz: 9c52b92b79d238b51972229ea351be3033c221325fc7e0775642bdd3a03851d4b8cdba81e0d2ac0ca992146e3c86c673490b167818c116c2f275c1996240dddc
|
data/_includes/navigation.html
CHANGED
|
@@ -26,6 +26,20 @@ style="position: -webkit-sticky;
|
|
|
26
26
|
</a>
|
|
27
27
|
</li>
|
|
28
28
|
{% endfor %}
|
|
29
|
+
{% for result in objectPropertiesResultset %}
|
|
30
|
+
<li class="nav-item">
|
|
31
|
+
<a class="nav-link" href="#id-{{ result.subject.iri | md5 }}">
|
|
32
|
+
{% include label.html iri = result.subject.iri %}
|
|
33
|
+
</a>
|
|
34
|
+
</li>
|
|
35
|
+
{% endfor %}
|
|
36
|
+
{% for result in datatypePropertiesResultset %}
|
|
37
|
+
<li class="nav-item">
|
|
38
|
+
<a class="nav-link" href="#id-{{ result.subject.iri | md5 }}">
|
|
39
|
+
{% include label.html iri = result.subject.iri %}
|
|
40
|
+
</a>
|
|
41
|
+
</li>
|
|
42
|
+
{% endfor %}
|
|
29
43
|
</ul>
|
|
30
44
|
<script type="text/javascript">
|
|
31
45
|
function searchInList() {
|