mirror of
https://github.com/retailcrm/NelmioApiDocBundle.git
synced 2025-02-02 23:59:26 +03:00
b9718f3400
* Use twig instead of templating * Fix at least one suite test in Travis * Use Twig namespace (Twig > 1.10 and TwigBundle > 2.2)
14 lines
353 B
Twig
14 lines
353 B
Twig
{% extends "@NelmioApiDoc/layout.html.twig" %}
|
|
|
|
{% block content %}
|
|
<li class="resource">
|
|
<ul class="endpoints">
|
|
<li class="endpoint">
|
|
<ul class="operations">
|
|
{% include '@NelmioApiDoc/method.html.twig' %}
|
|
</ul>
|
|
</li>
|
|
</ul>
|
|
</li>
|
|
{% endblock content %}
|