Menu Menu

{{ site.title }}

GitHub
{% assign allData = site.data %}
  • General {% assign sorted_collections = site.collections | sort: "position" %} {% for collection in sorted_collections %}
      {% assign sorted_docs = collection.docs | sort: "position" %} {% for doc in sorted_docs %} {% if doc.collection == "documentation" %}
    • {{ doc.title }}
    • {% endif %} {% endfor %}
    {% endfor %}
  • {% for data in allData %} {{data[1].info.title}} v{{data[1].info.version}} {% assign singleData = data[1].paths | sort %} {% for path in singleData %}
    • {% assign id = path[0] | replace: '{', '' | replace: '}', '' %} {% assign methods = path[1] %} {%capture links %} {% assign first_method = '' %} {% for method_name in site.defaults.method_order %} {% if methods[method_name] %} {% if first_method == '' %} {% assign first_method = method_name %} {% endif %} {% endif %} {% endfor %} {% endcapture %}
      {{path[0]}}
      {{links}}
    {% endfor %} {% endfor %} Definitions {% for data in allData %} {% assign singleData = data[1].definitions | sort %} {% for definition in singleData %}
    • {{ definition[0] }}
    {% endfor %} {% endfor %}