Deprecated: Symfony\Component\Translation\t(): Implicitly marking parameter $domain as nullable is deprecated, the explicit nullable type must be used instead in /var/www/html/t/taurushr/vendor/symfony/translation/Resources/functions.php on line 18

Deprecated: Symfony\Component\Dotenv\Dotenv::loadEnv(): Implicitly marking parameter $envKey as nullable is deprecated, the explicit nullable type must be used instead in /var/www/html/t/taurushr/vendor/symfony/dotenv/Dotenv.php on line 110

Deprecated: Symfony\Component\Runtime\GenericRuntime::getResolver(): Implicitly marking parameter $reflector as nullable is deprecated, the explicit nullable type must be used instead in /var/www/html/t/taurushr/vendor/symfony/runtime/GenericRuntime.php on line 89

Deprecated: Symfony\Component\Runtime\RuntimeInterface::getResolver(): Implicitly marking parameter $reflector as nullable is deprecated, the explicit nullable type must be used instead in /var/www/html/t/taurushr/vendor/symfony/runtime/RuntimeInterface.php on line 26

Deprecated: Symfony\Component\Console\Input\ArgvInput::__construct(): Implicitly marking parameter $argv as nullable is deprecated, the explicit nullable type must be used instead in /var/www/html/t/taurushr/vendor/symfony/console/Input/ArgvInput.php on line 46

Deprecated: Symfony\Component\Console\Input\ArgvInput::__construct(): Implicitly marking parameter $definition as nullable is deprecated, the explicit nullable type must be used instead in /var/www/html/t/taurushr/vendor/symfony/console/Input/ArgvInput.php on line 46

Deprecated: Symfony\Component\Console\Input\Input::__construct(): Implicitly marking parameter $definition as nullable is deprecated, the explicit nullable type must be used instead in /var/www/html/t/taurushr/vendor/symfony/console/Input/Input.php on line 36

Deprecated: Constant E_STRICT is deprecated in /var/www/html/t/taurushr/vendor/symfony/error-handler/ErrorHandler.php on line 58

Deprecated: Constant E_STRICT is deprecated in /var/www/html/t/taurushr/vendor/symfony/error-handler/ErrorHandler.php on line 76
Symfony Profiler

templates/components/PageHero.html.twig line 1

Open in your IDE?
  1. {% set overrideTitle = title is not null ? title : page.title %}
  2. {% set overrideSubtitle = subtitle is not null ? subtitle : page.subtitle %}
  3. <div class="page-hero">
  4.   <div class="container">
  5.     <div class="page-hero__content">
  6.       {{- breadcrumbs(page, domCheckIgnore(app.request.pathinfo) ) -}}
  7.       <h1 class="page-hero__title">{{ overrideTitle }}</h1>
  8.       <div class="page-hero__subtitle">{{ overrideSubtitle | raw }}</div>
  9.       {% if block('teamMemberInfo') %}
  10.         <div class="page-hero__team-member-info">
  11.           {% block teamMemberInfo %}{% endblock %}
  12.         </div>
  13.       {% endif %}
  14.       {% if block('content') %}
  15.         <div class="page-hero__buttons">
  16.           {% block content %}{% endblock %}
  17.         </div>
  18.       {% endif %}
  19.     </div>
  20.   </div>
  21. </div>