templates/Press/portal.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('Content/includes/portal-hero.html.twig', {
  7.         isNotPortal: true,
  8.         styleModifier: 'content-block'
  9.     }) }}
  10.     {{ include('Includes/main-title-block-editable.html.twig', {
  11.         suffix: 'title-block',
  12.         styleModifier: 'content-block container container-sm text-center',
  13.         subtitleIsAbove: true
  14.     }) }}
  15.     {{ include('Includes/areablock.html.twig') }}
  16. {% endblock %}
  17.     {% block javascripts %}
  18.         {% if not app.request.get('onlyInlineCss') %}
  19.         {{ include('Layout/includes/encore.html.twig', {
  20.             'staticDebugMode': staticDebugMode,
  21.             'file': 'js/press'
  22.         }) }}
  23.         {% endif %}
  24.     {% endblock %}