open.html.twig 774 B

12345678910111213141516171819202122
  1. {% extends '@WebProfiler/Profiler/base.html.twig' %}
  2. {% block head %}
  3. <style>
  4. {{ include('@WebProfiler/Profiler/open.css.twig') }}
  5. </style>
  6. {% endblock %}
  7. {% block body %}
  8. {% set source = filename|file_excerpt(line, -1) %}
  9. <div class="header">
  10. <h1>{{ file }}{% if 0 < line %} <small>line {{ line }}</small>{% endif %}</h1>
  11. <a class="doc" href="https://symfony.com/doc/{{ constant('Symfony\\Component\\HttpKernel\\Kernel::VERSION') }}/reference/configuration/framework.html#ide" rel="help">Open in your IDE?</a>
  12. </div>
  13. <div class="source">
  14. {% if source is null %}
  15. <p class="empty">The file is not readable.</p>
  16. {% else %}
  17. {{ source|raw }}
  18. {% endif %}
  19. </div>
  20. {% endblock %}