{% extends 'layout.html.twig' %} {% block javascripts %} {% endblock %} {% block content %}
{% if project.settings.shouldIncludeSource %} {% endif %}

{{ node.path|split('/')|slice(0,-1)|join('/') }}{{ node.name }}

{{ node.summary }}

{{ node.description|markdown|raw }} {% if node.traits|length > 0 %}

Traits

{% for trait in node.traits %} {% endfor %}
{{ trait|route('class:short')|raw }} {{ trait.summary }}
{% endif %} {% if node.interfaces|length > 0 %}

Interfaces

{% for interface in node.interfaces %} {% endfor %}
{{ interface|route('class:short')|raw }} {{ interface.summary }}
{% endif %} {% if node.classes|length > 0 %}

Classes

{% for class in node.classes %} {% endfor %}
{{ class|route('class:short')|raw }} {{ class.summary }}
{% endif %}
{% if node.constants|length > 0 %}

Constants

{% for constant in node.constants %} {{ block('constant') }} {% endfor %} {% endif %} {% if node.functions|length > 0 %}

Functions

{% for method in node.functions %} {{ block('method') }} {% endfor %} {% endif %}
{% endblock %}