+ {%- include 'blocks/header.html.twig' with {
+ imagesFolderPath: imagesFolderPath,
+ methodsPath: methodsPath,
+ relativeToRootPath: relativeToRootPath
+ } %}
+
+
+
+ Оглавление
+
+
+ {%- include 'blocks/table-of-contents-body.html.twig' with {
+ methods: tableOfContents.methods,
+ classes: tableOfContents.classes,
+ enums: tableOfContents.enums
+ } %}
+
+
+ {% if methods is not null %}
+
+ Методы
+
+ {% for method in methods %}
+
+ {%- include 'blocks/method-body.html.twig' with {
+ method: method,
+ objectsLinks: objectsLinks,
+ showSandbox: false
+ } %}
+
+ {% endfor %}
+ {% endif %}
+
+ {% if classes is not null %}
+
+ Классы
+
+ {% for class in classes %}
+
+ {%- include 'blocks/class-body.html.twig' with {
+ structure: class,
+ objectsLinks: objectsLinks
+ } %}
+
+ {% endfor %}
+ {% endif %}
+
+ {% if enums is not null %}
+
+ Перечисления
+
+ {% for enum in enums %}
+
+ {%- include 'blocks/enum-body.html.twig' with {
+ structure: enum,
+ objectsLinks: objectsLinks
+ } %}
+
+ {% endfor %}
+ {% endif %}
+