{% extends "template-base.html" %} {% block mainclasses %}landing padded-landing page-docs-index{% endblock %} {% block main %}

{% trans %}XRP Ledger Documentation{% endtrans %}

{% trans %}Dive into our documentation and start integrating with the XRP Ledger.{% endtrans %}

{% trans %}Browse by category, or skip straight to the full documentation index.{% endtrans %}

{% set doc_types = [] %} {% set flag_n = cycler(* range(1,99)) %} {% for page in pages %} {% if page.doc_type is defined and page.doc_type not in doc_types %} {% set doc_type_top = pages|selectattr('doc_type', 'defined_and_equalto', page.doc_type)|first %} {% set doc_type_name = doc_type_top.name %}
{% if page.blurb is defined %}

{{page.blurb}}

{% endif %} {% set parent_page = doc_type_top %} {% set depth = 1.5 %} {% include 'template-page-children.html' %}
{% set _ = doc_types.append(page.doc_type) %} {% endif %} {% endfor %}

{% trans %}Full Documentation Index{% endtrans %}

{% set parent_page = currentpage %} {% set depth = 5 %} {% include 'template-page-children.html' %}
{% endblock %} {% block endbody %} {% endblock %}