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

Open in your IDE?
  1. <section class="featured-news-article">
  2.   <div class="container">
  3.     <a
  4.       href="{{ generatePath(app.request, article.linkedPageId, {'news_slug' : article.slug }) }}"
  5.       class="featured-article-block"
  6.     >
  7.       <div class="featured-article-block__content">
  8.         <div class="featured-article-block__meta">
  9.           <span>Featured Article</span>
  10.           <span>{{ article.createdAt | date('d F Y') }}</span>
  11.         </div>
  12.         <div class="featured-article-block__title">
  13.           <h2>{{ article.title }}</h2>
  14.           <p>{{ article.excerpt | striptags }}</p>
  15.         </div>
  16.       </div>
  17.       <div class="featured-article-block__image">
  18.         <img
  19.           src="{{ imageCache('/' ~ article.getFullImagePath, 'zoomCrop', 1700, 700) }}"
  20.           alt="{{ article.title }}"
  21.           loading="lazy"
  22.         >
  23.       </div>
  24.     </a>
  25.   </div>
  26. </section>