templates/Press/pressRegistration.html.twig line 1

Open in your IDE?
  1. {% extends "Layout/default.html.twig" %}
  2. {% block navigation %}
  3.     {{ include('Press/Includes/pressHeader.html.twig') }}
  4. {% endblock %}
  5. {% block content %}
  6.     {{ include('Navigation/breadcrumb.html.twig') }}
  7.     {{ include('Includes/main-title-block-splitted-editable.html.twig') }}
  8.     {{ include('Includes/areablock.html.twig', {
  9.         suffix: 'top'
  10.     }) }}
  11.     {{ include('Press/Includes/pressRegistrationForm.html.twig') }}
  12.     {{ include('Includes/areablock.html.twig', {
  13.         suffix: 'bottom'
  14.     }) }}
  15. {% endblock %}
  16.     {% block javascripts %}
  17.         {% if not app.request.get('onlyInlineCss') %}
  18.         {{ include('Layout/includes/encore.html.twig', {
  19.             'staticDebugMode': staticDebugMode,
  20.             'file': 'js/press'
  21.         }) }}
  22.         {% endif %}
  23.     {% endblock %}