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/PageHeroThemed.html.twig line 1

Open in your IDE?
  1. {% set imageSrc = null %}
  2. {% if page.image is not null %}
  3.   {% set imageSrc = page.getFullImagePath %}
  4. {% endif %}
  5. {% set overrideTitle = title is not null ? title : page.title %}
  6. {% set overrideSubtitle = subtitle is not null ? subtitle : page.subtitle %}
  7. {% if bg and page.image is not null %}
  8. <div
  9.   class="page-hero page-hero--themed"
  10.   style="--page-hero-image: url({{ imageCache('/' ~ page.getFullImagePath, 'zoomCrop', 2560, 1700) }})"
  11. >
  12. {% else %}
  13.   <div class="page-hero page-hero--themed page-hero--no-bg">
  14. {% endif %}
  15.   <div class="container">
  16.     <div class="page-hero__content">
  17.       {{- breadcrumbs(page, domCheckIgnore(app.request.pathinfo) ) -}}
  18.       <h1 class="page-hero__title">{{ overrideTitle }}</h1>
  19.       {% if overrideSubtitle %}
  20.         <div class="page-hero__subtitle">{{ overrideSubtitle | raw }}</div>
  21.       {% endif %}
  22.       {% if block('teamMemberInfo') %}
  23.         <div class="page-hero__team-member-info">
  24.           {% block teamMemberInfo %}{% endblock %}
  25.         </div>
  26.       {% endif %}
  27.       {% if block('content') %}
  28.         <div class="page-hero__buttons">
  29.           {% block content %}{% endblock %}
  30.         </div>
  31.       {% endif %}
  32.     </div>
  33.   </div>
  34. </div>