templates/content/directory.html.twig line 1

Open in your IDE?
  1. {% extends "base.html.twig" %}
  2. {% block body %}
  3.     {% if content is defined %}
  4.        {% include "content/tmpl/directory-listing.html.twig" %}
  5.     {% else %}
  6.        {% include "content/directory-index.html.twig" %}
  7.     {% endif %}
  8. {% endblock %}