diff --git a/template/page-docs.html.jinja b/template/page-docs.html.jinja
index 32c3f80bd0..b39f906aec 100644
--- a/template/page-docs.html.jinja
+++ b/template/page-docs.html.jinja
@@ -6,7 +6,7 @@
{% block main %}
-
+
{% trans %}What Would You Like to Learn?{% endtrans %}
{% trans %}XRP Ledger Documentation{% endtrans %}
@@ -24,9 +24,9 @@
-
+
-
+
{% trans %}Browse By Popular Topics{% endtrans %}
{% for pg_html in currentpage.popular_pages %}
@@ -36,38 +36,47 @@
-
+
{% trans %}Browse By Label{% endtrans %}
{% include 'component-tag-cloud.html.jinja' %}
-
+
{% set get_started = pages|selectattr("html", "defined_and_equalto", "get-started.html")|first %}
+
{% trans %}Software and SDKs{% endtrans %}
-
+
+ {% set curated_cards = [
+ "get-started-using-node-js.html",
+ "get-started-using-python.html",
+ "get-started-using-java.html",
+ "get-started-using-http-websocket-apis.html"
+ ] %}
+ {% set mobile_cols = 2 %}
+ {% set show_blurbs = False %}
+ {% include 'component-curated-cards.html.jinja' %}
-
- {% trans %}Article Types{% endtrans %}
+
+
+
{% trans %}Article Types{% endtrans %}
+ {% trans %}Read Up First{% endtrans %}
+
{% set curated_cards = currentpage.children|selectattr("html","ne","by-label.html")|selectattr("html","ne","faq.html")|map(attribute="html")|list %}
{% set mobile_cols = 1 %}
+ {% set show_blurbs = True %}
{% include 'component-curated-cards.html.jinja' %}
-
- {% trans %}Run an XRP Ledger Network Node{% endtrans %}
+
+
+
{% trans %}Run an XRP Ledger Network Node{% endtrans %}
+ {% trans %}Participate in the Network{% endtrans %}
+
{% set curated_cards = [
"the-rippled-server.html",
"install-rippled.html",
@@ -77,13 +86,13 @@
{% include 'component-curated-cards.html.jinja' %}
-
+
{% trans %}Hot Topic: NFTs{% endtrans %}
-
+
{% trans %}Interested in non-fungible tokens, but concerned about their large carbon footprint? Check out these proposed standards for issuing NFTs on the XRP Ledger:{% endtrans %}
-
+
-
- {% trans %}Full Documentation Index{% endtrans %}
+
+
+
{% trans %}Full Documentation Index{% endtrans %}
+ {% trans %}See Everything{% endtrans %}
+
+
{% for page in currentpage.children if page.html not in ("by-label.html", "faq.html") %}
{% set parent_html = page.html %}
{% set depth = 6 %}
+ {% set show_blurbs = False %}