{% trans %}What Would You Like to Learn?{% endtrans %}
{% trans %}XRP Ledger Documentation{% endtrans %}
{% trans %}Browse By Popular Topics{% endtrans %}
{% for pg_html in currentpage.popular_pages %}
{% set page = pages|selectattr("html", "defined_and_equalto", pg_html)|first %}
{% if page.html is not defined %}
{% include "ERROR: Couldn't find page "+pg_html+" from popular_pages" %}
{% endif %}
{% set curated_cards = [
"get-started-using-javascript.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 %}Dive In{% 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 %}Participate in the Network{% endtrans %}
{% set curated_cards = [
"the-rippled-server.html",
"install-rippled.html",
"run-rippled-as-a-validator.html",
"troubleshoot-the-rippled-server.html"
] %}
{% include 'component-curated-cards.html.jinja' %}
{% trans %}NFTs{% endtrans %}
{% trans %}Hot Topic{% endtrans %}
{% trans %}Interested in non-fungible tokens, but concerned about their large carbon footprint? Read more about issuing NFTs on the XRP Ledger:{% 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 %}