- {% if obj.display %}
{% if is_own_page %}
- html_theme.sidebar_secondary.remove:
{{ obj.id.split(“.”)[-1] }} {{ “=” * obj.id.split(“.”)[-1] | length }}
{% if obj.docstring %}
{{obj.docstring|indent(3)}}
{% endif %}
- {% block subpackages %}
{% set visible_subpackages = obj.subpackages|selectattr(“display”)|list %} {% if visible_subpackages %}
Subpackages#
Submodules#
Attributes#
{% if “attribute” in own_page_types %}
Exceptions#
{% if “exception” in own_page_types %}
Classes#
{% if “class” in own_page_types %}
Functions#
{% if “function” in own_page_types %}
{{obj.type|title}} Contents {{“-” * obj.type|length}}———
{% for obj_item in this_page_children %}
- {{obj_item.render()|indent(0)}}
{% endfor %}
{% endif %}
{% endif %}
{% endblock %}
{% else %}
{% if obj.docstring %}
{{obj.docstring|indent(6)}}
{% endif %} {% for obj_item in visible_children %}
- {{obj_item.render()|indent(3)}}
{% endfor %}
{% endif %}
{% endif %}