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

Open in your IDE?
  1. <div class="price-block">
  2.   <h2 class="price-block__title">{{ price.title }}</h2>
  3.   <div class="price-block__content">{{ price.content | raw }}</div>
  4.   <div class="price-block__footer">
  5.     <div class="price-block-price">
  6.       {% if price.price == 'POA' %}
  7.         <span class="price-block-price__number">POA</span>
  8.       {% else %}
  9.         {% if price.price %}
  10.             <span class="price-block-price__currency">£</span>
  11.         {% endif %}
  12.         <span class="price-block-price__number">{{ price.price }}</span>
  13.         {% if price.unit %}
  14.           <span>/ {{ price.unit }}</span>
  15.         {% endif %}
  16.       {% endif %}
  17.     </div>
  18.     {# TODO: Add link to enquiry page #}
  19.     <a href="{{generatePath( app.request, 17) }}" class="button button-white"
  20.       >Enquire</a
  21.     >
  22.   </div>
  23. </div>