{% extends "base.html" %} {% block title %}Documentation{% endblock %} {% block content %}

Documentation

Project documentation, rendered from the source tree's README.md and docs/ directory.

{% if not source_available %}

Source-tree documentation isn't available. This happens when the server runs from an installed wheel rather than a checkout. Install the package in editable mode (pip install -e .) from the repo root, restart the server, and this page will find README.md and docs/*.md.

{% else %}
{% for d in docs %} {% endfor %}
DocumentWhat's inside
{{ d.title }} {{ d.teaser }}
{% endif %} {% endblock %}