Symfony Exception

NotFoundHttpException RuntimeError

HTTP 500 Internal Server Error

Variable "post" does not exist.

Exceptions 2

Twig\Error\ RuntimeError

  1.     <section class="bg-white py-4">
  2.         <div class="container pt-4 mt-4">
  3.             <!-- if there's no video attachment, show the picture -->
  4.             {% if record.attachment.path is not defined %}
  5.                 <img class="img-fluid pt-4 pb-2" src="{{record.image|thumbnail(1200, 600, 'c')}}" alt="{{post.title}}">
  6.             {% else %}
  7.             <!-- if there's a video attachment, show it -->
  8.             <div class="embed-responsive embed-responsive-16by9">
  9.                 <div class="py-4"></div>
  10.                 <video controls class="embed-responsive-item">
  1.         if ( !twig_get_attribute($this->env$this->sourcetwig_get_attribute($this->env$this->source, ($context["record"] ?? null), "attachment", [], "any"falsetruefalse8), "path", [], "any"truetruefalse8)) {
  2.             // line 9
  3.             echo "                <img class=\"img-fluid pt-4 pb-2\" src=\"";
  4.             echo $this->extensions['Bolt\Twig\ImageExtension']->thumbnail(twig_get_attribute($this->env$this->source, (isset($context["record"]) || array_key_exists("record"$context) ? $context["record"] : (function () { throw new RuntimeError('Variable "record" does not exist.'9$this->source); })()), "image", [], "any"falsefalsefalse9), 1200600"c");
  5.             echo "\" alt=\"";
  6.             echo twig_escape_filter($this->envtwig_get_attribute($this->env$this->source, (isset($context["post"]) || array_key_exists("post"$context) ? $context["post"] : (function () { throw new RuntimeError('Variable "post" does not exist.'9$this->source); })()), "title", [], "any"falsefalsefalse9), "html"nulltrue);
  7.             echo "\">
  8.             ";
  9.         } else {
  10.             // line 11
  11.             echo "            <!-- if there's a video attachment, show it -->
in vendor/twig/twig/src/Template.php -> block_main (line 171)
  1.             throw new \LogicException('A block must be a method on a \Twig\Template instance.');
  2.         }
  3.         if (null !== $template) {
  4.             try {
  5.                 $template->$block($context$blocks);
  6.             } catch (Error $e) {
  7.                 if (!$e->getSourceContext()) {
  8.                     $e->setSourceContext($template->getSourceContext());
  9.                 }
  1.         echo twig_include($this->env$context"_header.twig");
  2.         echo "
  3.             ";
  4.         // line 66
  5.         $this->displayBlock('main'$context$blocks);
  6.         // line 68
  7.         echo "
  8.             ";
  9.         // line 70
  10.         echo "
in vendor/twig/twig/src/Template.php -> block_body (line 171)
  1.             throw new \LogicException('A block must be a method on a \Twig\Template instance.');
  2.         }
  3.         if (null !== $template) {
  4.             try {
  5.                 $template->$block($context$blocks);
  6.             } catch (Error $e) {
  7.                 if (!$e->getSourceContext()) {
  8.                     $e->setSourceContext($template->getSourceContext());
  9.                 }
  1.     </head>
  2.     <body>
  3.         
  4.         ";
  5.         // line 62
  6.         $this->displayBlock('body'$context$blocks);
  7.         // line 74
  8.         echo "        <pre>
  9.         ";
  10.         // line 75
  11.         echo twig_escape_filter($this->env$this->extensions['Bolt\Twig\DumpExtension']->dump(), "html"nulltrue);
in vendor/twig/twig/src/Template.php -> doDisplay (line 394)
  1.     }
  2.     protected function displayWithErrorHandling(array $context, array $blocks = [])
  3.     {
  4.         try {
  5.             $this->doDisplay($context$blocks);
  6.         } catch (Error $e) {
  7.             if (!$e->getSourceContext()) {
  8.                 $e->setSourceContext($this->getSourceContext());
  9.             }
in vendor/twig/twig/src/Template.php -> displayWithErrorHandling (line 367)
  1.         return $this->blocks;
  2.     }
  3.     public function display(array $context, array $blocks = [])
  4.     {
  5.         $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks$blocks));
  6.     }
  7.     public function render(array $context)
  8.     {
  9.         $level ob_get_level();
  1.         $macros $this->macros;
  2.         $__internal_6f47bbe9983af81f1e7450e9a3e3768f $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
  3.         $__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template""record.twig"));
  4.         $this->parent $this->loadTemplate("_master.twig""record.twig"1);
  5.         $this->parent->display($contextarray_merge($this->blocks$blocks));
  6.         
  7.         $__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
  8.     }
in vendor/twig/twig/src/Template.php -> doDisplay (line 394)
  1.     }
  2.     protected function displayWithErrorHandling(array $context, array $blocks = [])
  3.     {
  4.         try {
  5.             $this->doDisplay($context$blocks);
  6.         } catch (Error $e) {
  7.             if (!$e->getSourceContext()) {
  8.                 $e->setSourceContext($this->getSourceContext());
  9.             }
in vendor/twig/twig/src/Template.php -> displayWithErrorHandling (line 367)
  1.         return $this->blocks;
  2.     }
  3.     public function display(array $context, array $blocks = [])
  4.     {
  5.         $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks$blocks));
  6.     }
  7.     public function render(array $context)
  8.     {
  9.         $level ob_get_level();
in vendor/twig/twig/src/Template.php -> display (line 379)
  1.             ob_start();
  2.         } else {
  3.             ob_start(function () { return ''; });
  4.         }
  5.         try {
  6.             $this->display($context);
  7.         } catch (\Throwable $e) {
  8.             while (ob_get_level() > $level) {
  9.                 ob_end_clean();
  10.             }
  1.     public function render(array $context = []): string
  2.     {
  3.         // using func_get_args() allows to not expose the blocks argument
  4.         // as it should only be used by internal code
  5.         return $this->template->render($context\func_get_args()[1] ?? []);
  6.     }
  7.     public function display(array $context = [])
  8.     {
  9.         // using func_get_args() allows to not expose the blocks argument
  1.      * @throws SyntaxError  When an error occurred during compilation
  2.      * @throws RuntimeError When an error occurred during rendering
  3.      */
  4.     public function render($name, array $context = []): string
  5.     {
  6.         return $this->load($name)->render($context);
  7.     }
  8.     /**
  9.      * Displays a template.
  10.      *
  1.                 ->filter()
  2.                 ->toArray();
  3.             $template $this->twig->resolveTemplate($templates);
  4.         }
  5.         return $this->twig->render($template$parameters);
  6.     }
  7.     public function createPager(Query $querystring $contentTypeint $pageSizestring $order)
  8.     {
  9.         return $query
  1.         // if theme.yaml was loaded, set it as global.
  2.         if ($this->config->has('theme')) {
  3.             $parameters['theme'] = $this->config->get('theme');
  4.         }
  5.         $content $this->renderTemplate($template$parameters);
  6.         // Make sure we have a Response
  7.         if ($response === null) {
  8.             $response = new Response();
  9.         }
  1.         if (empty($templates)) {
  2.             $templates $this->templateChooser->forRecord($record);
  3.         }
  4.         return $this->render($templates$context);
  5.     }
  6.     protected function validLocaleForContentType(ContentType $contentType): bool
  7.     {
  8.         if ($contentType->isKeyNotEmpty('locales')) {
  1.         // Check if we're attempting to preview an unpublished Record
  2.         if ($record && $this->validateSecret($this->request->get('secret'''), (string) $record->getId())) {
  3.             $requirePublished false;
  4.         }
  5.         return $this->renderSingle($record$requirePublished);
  6.     }
  7.     public function contentByFieldValue(string $contentTypeSlugstring $fieldstring $valuebool $requirePublished true): Response
  8.     {
  9.         $contentType ContentType::factory($contentTypeSlug$this->config->get('contenttypes'));
  1.         if (! empty($contentType) && ! empty($slug)) {
  2.             // We wrap it in a try/catch, because we wouldn't want to
  3.             // trigger a 404 within a 404 now, would we?
  4.             try {
  5.                 return $this->detailController->record($slug$contentTypefalsenull);
  6.             } catch (NotFoundHttpException $e) {
  7.                 // Just continue to the next one.
  8.             }
  9.         }
  1.     }
  2.     private function showNotFound(): Response
  3.     {
  4.         foreach ($this->config->get('general/notfound') as $item) {
  5.             $output $this->attemptToRender($item);
  6.             if ($output instanceof Response) {
  7.                 return $output;
  8.             }
  9.         }
  1.             return $this->showMaintenance();
  2.         }
  3.         if ($code === Response::HTTP_NOT_FOUND) {
  4.             return $this->showNotFound();
  5.         }
  6.         if ($code === Response::HTTP_FORBIDDEN) {
  7.             return $this->showForbidden();
  8.         }
  1.         $this->dispatcher->dispatch($eventKernelEvents::CONTROLLER_ARGUMENTS);
  2.         $controller $event->getController();
  3.         $arguments $event->getArguments();
  4.         // call controller
  5.         $response $controller(...$arguments);
  6.         // view
  7.         if (!$response instanceof Response) {
  8.             $event = new ViewEvent($this$request$type$response);
  9.             $this->dispatcher->dispatch($eventKernelEvents::VIEW);
  1.     {
  2.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  3.         $this->requestStack->push($request);
  4.         try {
  5.             return $this->handleRaw($request$type);
  6.         } catch (\Exception $e) {
  7.             if ($e instanceof RequestExceptionInterface) {
  8.                 $e = new BadRequestHttpException($e->getMessage(), $e);
  9.             }
  10.             if (false === $catch) {
  1.         $throwable $event->getThrowable();
  2.         $request $this->duplicateRequest($throwable$event->getRequest());
  3.         try {
  4.             $response $event->getKernel()->handle($requestHttpKernelInterface::SUB_REQUESTfalse);
  5.         } catch (\Exception $e) {
  6.             $f FlattenException::createFromThrowable($e);
  7.             $this->logException($esprintf('Exception thrown when handling an exception (%s: %s at %s line %s)'$f->getClass(), $f->getMessage(), $e->getFile(), $e->getLine()));
  1.         $this->called true;
  2.         $this->priority $dispatcher->getListenerPriority($eventName$this->listener);
  3.         $e $this->stopwatch->start($this->name'event_listener');
  4.         ($this->optimizedListener ?? $this->listener)($event$eventName$dispatcher);
  5.         if ($e->isStarted()) {
  6.             $e->stop();
  7.         }
  1.         foreach ($listeners as $listener) {
  2.             if ($stoppable && $event->isPropagationStopped()) {
  3.                 break;
  4.             }
  5.             $listener($event$eventName$this);
  6.         }
  7.     }
  8.     /**
  9.      * Sorts the internal list of listeners for the given event by priority.
  1.         } else {
  2.             $listeners $this->getListeners($eventName);
  3.         }
  4.         if ($listeners) {
  5.             $this->callListeners($listeners$eventName$event);
  6.         }
  7.         return $event;
  8.     }
  1.         try {
  2.             $this->beforeDispatch($eventName$event);
  3.             try {
  4.                 $e $this->stopwatch->start($eventName'section');
  5.                 try {
  6.                     $this->dispatcher->dispatch($event$eventName);
  7.                 } finally {
  8.                     if ($e->isStarted()) {
  9.                         $e->stop();
  10.                     }
  11.                 }
  1.      * @throws \Exception
  2.      */
  3.     private function handleThrowable(\Throwable $eRequest $requestint $type): Response
  4.     {
  5.         $event = new ExceptionEvent($this$request$type$e);
  6.         $this->dispatcher->dispatch($eventKernelEvents::EXCEPTION);
  7.         // a listener might have replaced the exception
  8.         $e $event->getThrowable();
  9.         if (!$event->hasResponse()) {
in vendor/symfony/http-kernel/HttpKernel.php -> handleThrowable (line 86)
  1.                 $this->finishRequest($request$type);
  2.                 throw $e;
  3.             }
  4.             return $this->handleThrowable($e$request$type);
  5.         } finally {
  6.             $this->requestStack->pop();
  7.         }
  8.     }
  1.         $this->boot();
  2.         ++$this->requestStackSize;
  3.         $this->resetServices true;
  4.         try {
  5.             return $this->getHttpKernel()->handle($request$type$catch);
  6.         } finally {
  7.             --$this->requestStackSize;
  8.         }
  9.     }
Kernel->handle(object(Request)) in public/index.php (line 37)
  1.     Request::setTrustedHosts([$trustedHosts]);
  2. }
  3. $kernel = new Kernel($_SERVER['APP_ENV'], (bool) $_SERVER['APP_DEBUG']);
  4. $request Request::createFromGlobals();
  5. $response $kernel->handle($request);
  6. $response->send();
  7. $kernel->terminate($request$response);

Symfony\Component\HttpKernel\Exception\ NotFoundHttpException

Content not found

  1.      * Renders a single record.
  2.      */
  3.     public function renderSingle(?Content $recordbool $requirePublished true, array $templates = []): Response
  4.     {
  5.         if (! $record) {
  6.             throw new NotFoundHttpException('Content not found');
  7.         }
  8.         // If the content is not 'published' we throw a 404, unless we've overridden it.
  9.         if (($record->getStatus() !== Statuses::PUBLISHED) && $requirePublished) {
  10.             throw new NotFoundHttpException('Content is not published');
  1.         // Check if we're attempting to preview an unpublished Record
  2.         if ($record && $this->validateSecret($this->request->get('secret'''), (string) $record->getId())) {
  3.             $requirePublished false;
  4.         }
  5.         return $this->renderSingle($record$requirePublished);
  6.     }
  7.     public function contentByFieldValue(string $contentTypeSlugstring $fieldstring $valuebool $requirePublished true): Response
  8.     {
  9.         $contentType ContentType::factory($contentTypeSlug$this->config->get('contenttypes'));
  1.         $this->dispatcher->dispatch($eventKernelEvents::CONTROLLER_ARGUMENTS);
  2.         $controller $event->getController();
  3.         $arguments $event->getArguments();
  4.         // call controller
  5.         $response $controller(...$arguments);
  6.         // view
  7.         if (!$response instanceof Response) {
  8.             $event = new ViewEvent($this$request$type$response);
  9.             $this->dispatcher->dispatch($eventKernelEvents::VIEW);
  1.     {
  2.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  3.         $this->requestStack->push($request);
  4.         try {
  5.             return $this->handleRaw($request$type);
  6.         } catch (\Exception $e) {
  7.             if ($e instanceof RequestExceptionInterface) {
  8.                 $e = new BadRequestHttpException($e->getMessage(), $e);
  9.             }
  10.             if (false === $catch) {
  1.         $this->boot();
  2.         ++$this->requestStackSize;
  3.         $this->resetServices true;
  4.         try {
  5.             return $this->getHttpKernel()->handle($request$type$catch);
  6.         } finally {
  7.             --$this->requestStackSize;
  8.         }
  9.     }
Kernel->handle(object(Request)) in public/index.php (line 37)
  1.     Request::setTrustedHosts([$trustedHosts]);
  2. }
  3. $kernel = new Kernel($_SERVER['APP_ENV'], (bool) $_SERVER['APP_DEBUG']);
  4. $request Request::createFromGlobals();
  5. $response $kernel->handle($request);
  6. $response->send();
  7. $kernel->terminate($request$response);

Logs

No log messages

Stack Traces 2

[2/2] RuntimeError
Twig\Error\RuntimeError:
Variable "post" does not exist.

  at public/theme/atj/record.twig:9
  at __TwigTemplate_b5b729cdc801033c8b0c4424e98f6ea0->{closure}()
     (var/cache/debug/twig/9b/9b9c062f8d53bbf5f70eb39eb2515392.php:70)
  at __TwigTemplate_b5b729cdc801033c8b0c4424e98f6ea0->block_main(array('record' => object(Content), 'block' => object(Content), 'user' => null, 'theme' => object(DeepCollection), 'app' => object(AppVariable), 'config' => object(Config), 'defaultLocale' => 'de', 'exception' => object(NotFoundHttpException), 'locales' => object(Collection)), array('body' => array(object(__TwigTemplate_7721092d1df6e6809ae7d2e5b67b148d), 'block_body'), 'main' => array(object(__TwigTemplate_b5b729cdc801033c8b0c4424e98f6ea0), 'block_main')))
     (vendor/twig/twig/src/Template.php:171)
  at Twig\Template->displayBlock('main', array('record' => object(Content), 'block' => object(Content), 'user' => null, 'theme' => object(DeepCollection), 'app' => object(AppVariable), 'config' => object(Config), 'defaultLocale' => 'de', 'exception' => object(NotFoundHttpException), 'locales' => object(Collection)), array('body' => array(object(__TwigTemplate_7721092d1df6e6809ae7d2e5b67b148d), 'block_body'), 'main' => array(object(__TwigTemplate_b5b729cdc801033c8b0c4424e98f6ea0), 'block_main')))
     (var/cache/debug/twig/15/151ae0abc2ccb2a4d272eae39e2d402a.php:245)
  at __TwigTemplate_7721092d1df6e6809ae7d2e5b67b148d->block_body(array('record' => object(Content), 'block' => object(Content), 'user' => null, 'theme' => object(DeepCollection), 'app' => object(AppVariable), 'config' => object(Config), 'defaultLocale' => 'de', 'exception' => object(NotFoundHttpException), 'locales' => object(Collection)), array('body' => array(object(__TwigTemplate_7721092d1df6e6809ae7d2e5b67b148d), 'block_body'), 'main' => array(object(__TwigTemplate_b5b729cdc801033c8b0c4424e98f6ea0), 'block_main')))
     (vendor/twig/twig/src/Template.php:171)
  at Twig\Template->displayBlock('body', array('record' => object(Content), 'block' => object(Content), 'user' => null, 'theme' => object(DeepCollection), 'app' => object(AppVariable), 'config' => object(Config), 'defaultLocale' => 'de', 'exception' => object(NotFoundHttpException), 'locales' => object(Collection)), array('body' => array(object(__TwigTemplate_7721092d1df6e6809ae7d2e5b67b148d), 'block_body'), 'main' => array(object(__TwigTemplate_b5b729cdc801033c8b0c4424e98f6ea0), 'block_main')))
     (var/cache/debug/twig/15/151ae0abc2ccb2a4d272eae39e2d402a.php:186)
  at __TwigTemplate_7721092d1df6e6809ae7d2e5b67b148d->doDisplay(array('record' => object(Content), 'block' => object(Content), 'user' => null, 'theme' => object(DeepCollection), 'app' => object(AppVariable), 'config' => object(Config), 'defaultLocale' => 'de', 'exception' => object(NotFoundHttpException), 'locales' => object(Collection)), array('body' => array(object(__TwigTemplate_7721092d1df6e6809ae7d2e5b67b148d), 'block_body'), 'main' => array(object(__TwigTemplate_b5b729cdc801033c8b0c4424e98f6ea0), 'block_main')))
     (vendor/twig/twig/src/Template.php:394)
  at Twig\Template->displayWithErrorHandling(array('record' => object(Content), 'block' => object(Content), 'user' => null, 'theme' => object(DeepCollection), 'app' => object(AppVariable), 'config' => object(Config), 'defaultLocale' => 'de', 'exception' => object(NotFoundHttpException)), array('body' => array(object(__TwigTemplate_7721092d1df6e6809ae7d2e5b67b148d), 'block_body'), 'main' => array(object(__TwigTemplate_b5b729cdc801033c8b0c4424e98f6ea0), 'block_main')))
     (vendor/twig/twig/src/Template.php:367)
  at Twig\Template->display(array('record' => object(Content), 'block' => object(Content), 'user' => null, 'theme' => object(DeepCollection), 'app' => object(AppVariable), 'config' => object(Config), 'defaultLocale' => 'de', 'exception' => object(NotFoundHttpException)), array('main' => array(object(__TwigTemplate_b5b729cdc801033c8b0c4424e98f6ea0), 'block_main')))
     (var/cache/debug/twig/9b/9b9c062f8d53bbf5f70eb39eb2515392.php:45)
  at __TwigTemplate_b5b729cdc801033c8b0c4424e98f6ea0->doDisplay(array('record' => object(Content), 'block' => object(Content), 'user' => null, 'theme' => object(DeepCollection), 'app' => object(AppVariable), 'config' => object(Config), 'defaultLocale' => 'de', 'exception' => object(NotFoundHttpException)), array('main' => array(object(__TwigTemplate_b5b729cdc801033c8b0c4424e98f6ea0), 'block_main')))
     (vendor/twig/twig/src/Template.php:394)
  at Twig\Template->displayWithErrorHandling(array('record' => object(Content), 'block' => object(Content), 'user' => null, 'theme' => object(DeepCollection), 'app' => object(AppVariable), 'config' => object(Config), 'defaultLocale' => 'de', 'exception' => object(NotFoundHttpException)), array('main' => array(object(__TwigTemplate_b5b729cdc801033c8b0c4424e98f6ea0), 'block_main')))
     (vendor/twig/twig/src/Template.php:367)
  at Twig\Template->display(array('record' => object(Content), 'block' => object(Content), 'user' => null, 'theme' => object(DeepCollection)))
     (vendor/twig/twig/src/Template.php:379)
  at Twig\Template->render(array('record' => object(Content), 'block' => object(Content), 'user' => null, 'theme' => object(DeepCollection)), array())
     (vendor/twig/twig/src/TemplateWrapper.php:40)
  at Twig\TemplateWrapper->render(array('record' => object(Content), 'block' => object(Content), 'user' => null, 'theme' => object(DeepCollection)))
     (vendor/twig/twig/src/Environment.php:280)
  at Twig\Environment->render(object(TemplateWrapper), array('record' => object(Content), 'block' => object(Content), 'user' => null, 'theme' => object(DeepCollection)))
     (vendor/bolt/core/src/Controller/TwigAwareController.php:231)
  at Bolt\Controller\TwigAwareController->renderTemplate(object(TemplateWrapper), array('record' => object(Content), 'block' => object(Content), 'user' => null, 'theme' => object(DeepCollection)))
     (vendor/bolt/core/src/Controller/TwigAwareController.php:90)
  at Bolt\Controller\TwigAwareController->render(array('block.twig', 'block.html.twig', 'record.twig', 'record.html.twig'), array('record' => object(Content), 'block' => object(Content), 'user' => null, 'theme' => object(DeepCollection)))
     (vendor/bolt/core/src/Controller/TwigAwareController.php:140)
  at Bolt\Controller\TwigAwareController->renderSingle(object(Content), false)
     (vendor/bolt/core/src/Controller/Frontend/DetailController.php:64)
  at Bolt\Controller\Frontend\DetailController->record('404-not-found', 'blocks', false, null)
     (vendor/bolt/core/src/Controller/ErrorController.php:193)
  at Bolt\Controller\ErrorController->attemptToRender('blocks/404-not-found')
     (vendor/bolt/core/src/Controller/ErrorController.php:117)
  at Bolt\Controller\ErrorController->showNotFound()
     (vendor/bolt/core/src/Controller/ErrorController.php:97)
  at Bolt\Controller\ErrorController->showAction(object(Environment), object(NotFoundHttpException))
     (vendor/symfony/http-kernel/HttpKernel.php:163)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 2)
     (vendor/symfony/http-kernel/HttpKernel.php:75)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 2, false)
     (vendor/symfony/http-kernel/EventListener/ErrorListener.php:91)
  at Symfony\Component\HttpKernel\EventListener\ErrorListener->onKernelException(object(ExceptionEvent), 'kernel.exception', object(TraceableEventDispatcher))
     (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:117)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke(object(ExceptionEvent), 'kernel.exception', object(TraceableEventDispatcher))
     (vendor/symfony/event-dispatcher/EventDispatcher.php:230)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners(array(object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener)), 'kernel.exception', object(ExceptionEvent))
     (vendor/symfony/event-dispatcher/EventDispatcher.php:59)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch(object(ExceptionEvent), 'kernel.exception')
     (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:154)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch(object(ExceptionEvent), 'kernel.exception')
     (vendor/symfony/http-kernel/HttpKernel.php:223)
  at Symfony\Component\HttpKernel\HttpKernel->handleThrowable(object(NotFoundHttpException), object(Request), 1)
     (vendor/symfony/http-kernel/HttpKernel.php:86)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/symfony/http-kernel/Kernel.php:202)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (public/index.php:37)                
[1/2] NotFoundHttpException
Symfony\Component\HttpKernel\Exception\NotFoundHttpException:
Content not found

  at vendor/bolt/core/src/Controller/TwigAwareController.php:107
  at Bolt\Controller\TwigAwareController->renderSingle(null, true)
     (vendor/bolt/core/src/Controller/Frontend/DetailController.php:64)
  at Bolt\Controller\Frontend\DetailController->record('little-palm-tree-preview', 'cd', true, 'de')
     (vendor/symfony/http-kernel/HttpKernel.php:163)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
     (vendor/symfony/http-kernel/HttpKernel.php:75)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/symfony/http-kernel/Kernel.php:202)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (public/index.php:37)