We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6e50f4 commit 2846d12Copy full SHA for 2846d12
_includes/_navigation.html
@@ -27,6 +27,27 @@
27
{% endif %}
28
29
{% endfor %}
30
+ {% if link[0] == 'dev' %}
31
+ <li>
32
+ {% for article in site.doc %}
33
+ {% if article.btcversion == "index" %}
34
+ <a href="{{article.url}}">RPC Docs</a>
35
+ {% endif %}
36
+ {% endfor %}
37
+ {% assign groups = site.doc | group_by:"btcversion" | sort: "name" %}
38
+ <ul>
39
+ {% for group in groups %}
40
+ {% if group.name != "index" %}
41
+ {% for article in group.items %}
42
+ {% if article.name == "index" %}
43
+ <li><a href="{{article.url}}">{{group.name}}</a></li>
44
45
46
47
48
+ </ul>
49
+ </li>
50
51
</ul>
52
</li>
53
0 commit comments