templates/themes/standard/pagelayout.html.twig line 23

Open in your IDE?
  1. <!doctype html>
  2. <html lang="{{ app.request.locale|replace({'_': '-'}) }}">
  3. <head>
  4. <link rel="icon" type="image/x-icon" href="{{ asset('bundles/ibexaadminui/img/favicon.ico') }}" />
  5. <meta charset="utf-8">
  6. {% block meta %}{% endblock %}
  7. {% if content is defined and title is not defined %}
  8. {% set title = ibexa_content_name( content ) %}
  9. {% endif %}
  10. <title>{{ title|default( 'Home' ) }}</title>
  11. <meta name="generator" content="Exponential Platform DXP"/>
  12. {% if content is defined and content.contentInfo.mainLocationId %}
  13. <link rel="canonical" href="{{ ibexa_path(content) }}" />
  14. {% endif %}
  15. {% block stylesheets %}
  16. {{ encore_entry_link_tags('app') }}
  17. {% endblock %}
  18. </head>
  19. <body>
  20. {% block content %}
  21. {% endblock %}
  22. {% block javascripts %}
  23. {{ encore_entry_script_tags('app') }}
  24. {% endblock %}
  25. </body>
  26. </html>