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/themes/theme/casestudies/casestudy.html.twig line 1

Open in your IDE?
  1. <script type="application/ld+json">
  2.     {
  3.         "@context": "https://schema.org",
  4.         "@type": "Article",
  5.         "headline": "{{ study.title }}",
  6.         "author": {
  7.             "@type": "Organization",
  8.             "name": "{{ sitename }}"
  9.         },
  10.         "datePublished": "{{ study.createdAt|date('c') }}",
  11.         "dateModified": "{{ study.updatedAt|date('c') }}",
  12.         "image": {
  13.             "@type": "ImageObject",
  14.             "url": "{{ siteurl }}{{ imageCache('/' ~ study.getFullImagePath, 'zoomCrop', 800, 600) }}",
  15.             "width": 800,
  16.             "height": 600
  17.         },
  18.         "about": {
  19.             "@type": "Project",
  20.             "name": "{{ study.title }}",
  21.             "description": "{{ study.quote|raw|nl2br|striptags }}"
  22.         },
  23.         "articleBody": "{{ study.content|replace({'\n': ' ', '\r': ' '})|striptags }}"
  24.     }
  25. </script>
  26. {% if study.content %}
  27.   <twig:PageMainContent :center="true">
  28.     {{ study.isActive ? '' : '<h2>PREVIEW - Case Study not active</h2>' }}{{ study.title }}
  29.     {{ allowInlineEditor(study, 'content')|raw }}
  30.     <twig:block name="buttons">
  31.       {% if study.ctaText and study.ctaLink %}
  32.         <a href="{{ study.ctaLink }}" class="button">{{ study.ctaText }}</a>
  33.       {% endif %}
  34.     </twig:block>
  35.   </twig:PageMainContent>
  36. {% endif %}
  37. {% if study.testimonial %}
  38.     <twig:SingleTestimonial :testimonial="study.testimonial" />
  39. {% endif %}