templates/BToB/portal.html.twig line 1

Open in your IDE?
  1. {% extends "Layout/default.html.twig" %}
  2. {% block navigation %}
  3.     {{ include('BToB/Includes/header.html.twig') }}
  4. {% endblock %}
  5. {% block mainContainerStyling %}
  6.     pt-0
  7. {% endblock %}
  8. {% block content %}
  9.     {{ include('Content/includes/portal-hero.html.twig', {
  10.         styleModifier: 'content-block',
  11.         isNotPortal: true,
  12.     }) }}
  13.     {{ include('Includes/main-title-block-editable.html.twig', {
  14.         isCentered: true,
  15.         suffix: 'btob-main-title-block',
  16.         subtitleIsAbove: true
  17.     }) }}
  18.     {{ include('Includes/areablock.html.twig') }}
  19. {% endblock %}
  20.     {% block javascripts %}
  21.         {% if not app.request.get('onlyInlineCss') %}
  22.         {{ include('Layout/includes/encore.html.twig', {
  23.             'staticDebugMode': staticDebugMode,
  24.             'file': 'js/btob'
  25.         }) }}
  26.         {% endif %}
  27.     {% endblock %}