Whoops, looks like something went wrong.

Get help in the TYPO3 Documentation

If you need help solving this exception, you can have a look at the TYPO3 Documentation. There you can find solutions provided by the TYPO3 community. Once you have found a solution to the problem, help others by contributing to the documentation page.

Find a solution for this exception in the TYPO3 Documentation.

(1/1) #1314516809 InvalidArgumentException

File /_migrated/pics/IMG_6145.JPG does not exist.

in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/core/Classes/Resource/Driver/LocalDriver.php line 270
        $absoluteFilePath = $this->getAbsolutePath($fileIdentifier);
        // don't use $this->fileExists() because we need the absolute path to the file anyways, so we can directly
        // use PHP's filesystem method.
        if (!file_exists($absoluteFilePath) || !is_file($absoluteFilePath)) {
            throw new \InvalidArgumentException('File ' . $fileIdentifier . ' does not exist.', 1314516809);
        }

        $dirPath = PathUtility::dirname($fileIdentifier);
        $dirPath = $this->canonicalizeAndCheckFolderIdentifier($dirPath);
at TYPO3\CMS\Core\Resource\Driver\LocalDriver->getFileInfoByIdentifier()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/core/Classes/Resource/ResourceStorage.php line 1512
     * @internal
     */
    public function getFileInfoByIdentifier($identifier, array $propertiesToExtract = [])
    {
        return $this->driver->getFileInfoByIdentifier($identifier, $propertiesToExtract);
    }

    /**
     * Unsets the file and folder name filters, thus making this storage return unfiltered filelists.
at TYPO3\CMS\Core\Resource\ResourceStorage->getFileInfoByIdentifier()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/core/Classes/Resource/AbstractFile.php line 279
    {
        if ($this->properties['mime_type'] ?? false) {
            return $this->properties['mime_type'];
        }
        $fileInfo = $this->getStorage()->getFileInfoByIdentifier($this->getIdentifier(), ['mimetype']);
        return array_pop($fileInfo);
    }

    /**
at TYPO3\CMS\Core\Resource\AbstractFile->getMimeType()
in /var/www/vhosts/verwandern.de/httpdocs/typo3conf/ext/t3sbootstrap/Classes/Utility/ResponsiveImagesUtility.php line 481
  * @return string
  */
 public function generateDataUri(FileInterface $image): string
 {
  return 'data:' . $image->getMimeType() . ';base64,' . base64_encode($image->getContents());
 }


 /**
at T3SBS\T3sbootstrap\Utility\ResponsiveImagesUtility->generateDataUri()
in /var/www/vhosts/verwandern.de/httpdocs/typo3conf/ext/t3sbootstrap/Classes/Utility/ResponsiveImagesUtility.php line 466
  ];
  $processedImage = $this->imageService->applyProcessingInstructions($image, $processingInstructions);

  if ($inline) {
   return $this->generateDataUri($processedImage);
  } else {
   return $this->imageService->getImageUri($processedImage, $absoluteUri);
  }
 }
at T3SBS\T3sbootstrap\Utility\ResponsiveImagesUtility->generatePlaceholderImage()
in /var/www/vhosts/verwandern.de/httpdocs/typo3conf/ext/t3sbootstrap/Classes/Utility/ResponsiveImagesUtility.php line 157

  // Create placeholder image for lazyloading
  if ($lazyload && $placeholderSize) {
   $fallbackTag->addAttribute('src', $this->generatePlaceholderImage(
    $originalImage,
    $placeholderSize,
    $cropArea,
    $placeholderInline,
    $absoluteUri
at T3SBS\T3sbootstrap\Utility\ResponsiveImagesUtility->createPictureTag()
in /var/www/vhosts/verwandern.de/httpdocs/typo3conf/ext/t3sbootstrap/Classes/ViewHelpers/MediaViewHelper.php line 157
  }

  // Generate picture tag
  $this->tag = $this->responsiveImagesUtility->createPictureTag(
   $image,
   $fallbackImage,
   $this->arguments['breakpoints'],
   $cropVariantCollection,
   $focusArea,
at T3SBS\T3sbootstrap\ViewHelpers\MediaViewHelper->renderPicture()
in /var/www/vhosts/verwandern.de/httpdocs/typo3conf/ext/t3sbootstrap/Classes/ViewHelpers/MediaViewHelper.php line 84
  if (!empty($this->arguments['imgtag'])) {
   return self::renderImageTag($image, $width, $height, $fileExtension);
  } else {
   if (!empty($this->arguments['breakpoints'])) {
    return $this->renderPicture($image, $width, $height);
   } else {
    return parent::renderImage($image, $width, $height, $fileExtension);
   }
  }
at T3SBS\T3sbootstrap\ViewHelpers\MediaViewHelper->renderImage()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/fluid/Classes/ViewHelpers/MediaViewHelper.php line 125
        $fileRenderer = GeneralUtility::makeInstance(RendererRegistry::class)->getRenderer($file);

        // Fallback to image when no renderer is found
        if ($fileRenderer === null) {
            return $this->renderImage($file, $width, $height, $this->arguments['fileExtension'] ?? null);
        }
        $additionalConfig = array_merge_recursive($this->arguments, $additionalConfig);
        return $fileRenderer->render($file, $width, $height, $additionalConfig);
    }
at TYPO3\CMS\Fluid\ViewHelpers\MediaViewHelper->render()
at call_user_func()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractViewHelper.php line 264
     */
    protected function callRenderMethod()
    {
        if (method_exists($this, 'render')) {
            return call_user_func([$this, 'render']);
        }
        if ((new \ReflectionMethod($this, 'renderStatic'))->getDeclaringClass()->getName() !== AbstractViewHelper::class) {
            // Method is safe to call - will not recurse through ViewHelperInvoker via the default
            // implementation of renderStatic() on this class.
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractViewHelper->callRenderMethod()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractViewHelper.php line 252
    {
        $this->validateArguments();
        $this->initialize();

        return $this->callRenderMethod();
    }

    /**
     * Call the render() method and handle errors.
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractViewHelper->initializeArgumentsAndRender()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/vendor/typo3fluid/fluid/src/Core/ViewHelper/ViewHelperInvoker.php line 79
            }
            $viewHelper->setRenderingContext($renderingContext);
            $viewHelper->setArguments($evaluatedArguments);
            $viewHelper->handleAdditionalArguments($undeclaredArguments);
            return $viewHelper->initializeArgumentsAndRender();
        } catch (Exception $error) {
            return $renderingContext->getErrorHandler()->handleViewHelperError($error);
        }
    }
at TYPO3Fluid\Fluid\Core\ViewHelper\ViewHelperInvoker->invoke()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractViewHelper.php line 524
     */
    public static function renderStatic(array $arguments, \Closure $renderChildrenClosure, RenderingContextInterface $renderingContext)
    {
        $viewHelperClassName = get_called_class();
        return $renderingContext->getViewHelperInvoker()->invoke($viewHelperClassName, $arguments, $renderingContext, $renderChildrenClosure);
    }

    /**
     * Save the associated ViewHelper node in a static public class variable.
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractViewHelper::renderStatic()
in /var/www/vhosts/verwandern.de/httpdocs/typo3temp/var/cache/code/fluid_template/partial_Media_Rendering_Image_5c0b21ade439162ea6540e20548ed3dcf8a6decf.php line 1624
);$arguments85['lazyload'] = $renderingContext->getVariableProvider()->getByPath('settings.lazyLoad', $array113);
$array114 = array (
);$arguments85['ratio'] = $renderingContext->getVariableProvider()->getByPath('ratio', $array114);

$output84 .= T3SBS\T3sbootstrap\ViewHelpers\MediaViewHelper::renderStatic($arguments85, $renderChildrenClosure86, $renderingContext);

$output84 .= '
   ';
return $output84;
at partial_Media_Rendering_Image_5c0b21ade439162ea6540e20548ed3dcf8a6decf->{closure}()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 136
    private static function evaluateElseClosures(array $closures, array $conditionClosures, RenderingContextInterface $renderingContext)
    {
        foreach ($closures as $elseNodeIndex => $elseNodeClosure) {
            if (!isset($conditionClosures[$elseNodeIndex])) {
                return $elseNodeClosure();
            } else {
                if ($conditionClosures[$elseNodeIndex]()) {
                    return $elseNodeClosure();
                }
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::evaluateElseClosures()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 82
                return $arguments['__thenClosure']();
            }
        } elseif (!empty($arguments['__elseClosures'])) {
            $elseIfClosures = isset($arguments['__elseifClosures']) ? $arguments['__elseifClosures'] : [];
            return static::evaluateElseClosures($arguments['__elseClosures'], $elseIfClosures, $renderingContext);
        } elseif (array_key_exists('else', $arguments)) {
            return $arguments['else'];
        }
        return '';
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::renderStatic()
in /var/www/vhosts/verwandern.de/httpdocs/typo3temp/var/cache/code/fluid_template/partial_Media_Rendering_Image_5c0b21ade439162ea6540e20548ed3dcf8a6decf.php line 1631
   ';
return $output84;
};

$output57 .= TYPO3Fluid\Fluid\ViewHelpers\IfViewHelper::renderStatic($arguments58, $renderChildrenClosure59, $renderingContext);

$output57 .= '
 ';
return $output57;
at partial_Media_Rendering_Image_5c0b21ade439162ea6540e20548ed3dcf8a6decf->{closure}()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 136
    private static function evaluateElseClosures(array $closures, array $conditionClosures, RenderingContextInterface $renderingContext)
    {
        foreach ($closures as $elseNodeIndex => $elseNodeClosure) {
            if (!isset($conditionClosures[$elseNodeIndex])) {
                return $elseNodeClosure();
            } else {
                if ($conditionClosures[$elseNodeIndex]()) {
                    return $elseNodeClosure();
                }
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::evaluateElseClosures()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 82
                return $arguments['__thenClosure']();
            }
        } elseif (!empty($arguments['__elseClosures'])) {
            $elseIfClosures = isset($arguments['__elseifClosures']) ? $arguments['__elseifClosures'] : [];
            return static::evaluateElseClosures($arguments['__elseClosures'], $elseIfClosures, $renderingContext);
        } elseif (array_key_exists('else', $arguments)) {
            return $arguments['else'];
        }
        return '';
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::renderStatic()
in /var/www/vhosts/verwandern.de/httpdocs/typo3temp/var/cache/code/fluid_template/partial_Media_Rendering_Image_5c0b21ade439162ea6540e20548ed3dcf8a6decf.php line 1638
 ';
return $output57;
};

$output0 .= TYPO3Fluid\Fluid\ViewHelpers\IfViewHelper::renderStatic($arguments48, $renderChildrenClosure49, $renderingContext);

$output0 .= '

';
at partial_Media_Rendering_Image_5c0b21ade439162ea6540e20548ed3dcf8a6decf->render()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/vendor/typo3fluid/fluid/src/View/AbstractTemplateView.php line 329
        $this->startRendering(self::RENDERING_PARTIAL, $parsedPartial, $renderingContext);
        if ($sectionName !== null) {
            $output = $this->renderSection($sectionName, $variables, $ignoreUnknown);
        } else {
            $output = $parsedPartial->render($renderingContext);
        }
        $this->stopRendering();
        return $output;
    }
at TYPO3Fluid\Fluid\View\AbstractTemplateView->renderPartial()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/vendor/typo3fluid/fluid/src/ViewHelpers/RenderViewHelper.php line 171
            $renderingContext = clone $renderingContext;
            $renderingContext->getVariableProvider()->setSource($variables);
            $content = (new $delegate())->render($renderingContext);
        } elseif ($partial !== null) {
            $content = $view->renderPartial($partial, $section, $variables, $optional);
        } elseif ($section !== null) {
            $content = $view->renderSection($section, $variables, $optional);
        } elseif (!$optional) {
            throw new \InvalidArgumentException('ViewHelper f:render called without either argument section, partial, renderable or delegate and optional flag is false');
at TYPO3Fluid\Fluid\ViewHelpers\RenderViewHelper::renderStatic()
in /var/www/vhosts/verwandern.de/httpdocs/typo3temp/var/cache/code/fluid_template/partial_Media_Type_Image_186a4be85f4718e159fe446005a7bb3f93a0718f.php line 2763
$array104 = array (
);$array101['addmedia'] = $renderingContext->getVariableProvider()->getByPath('addmedia', $array104);
$arguments99['arguments'] = $array101;

$output98 .= TYPO3\CMS\Fluid\ViewHelpers\RenderViewHelper::renderStatic($arguments99, $renderChildrenClosure100, $renderingContext);

$output98 .= '
      ';
return $output98;
at partial_Media_Type_Image_186a4be85f4718e159fe446005a7bb3f93a0718f->{closure}()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 136
    private static function evaluateElseClosures(array $closures, array $conditionClosures, RenderingContextInterface $renderingContext)
    {
        foreach ($closures as $elseNodeIndex => $elseNodeClosure) {
            if (!isset($conditionClosures[$elseNodeIndex])) {
                return $elseNodeClosure();
            } else {
                if ($conditionClosures[$elseNodeIndex]()) {
                    return $elseNodeClosure();
                }
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::evaluateElseClosures()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 82
                return $arguments['__thenClosure']();
            }
        } elseif (!empty($arguments['__elseClosures'])) {
            $elseIfClosures = isset($arguments['__elseifClosures']) ? $arguments['__elseifClosures'] : [];
            return static::evaluateElseClosures($arguments['__elseClosures'], $elseIfClosures, $renderingContext);
        } elseif (array_key_exists('else', $arguments)) {
            return $arguments['else'];
        }
        return '';
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::renderStatic()
in /var/www/vhosts/verwandern.de/httpdocs/typo3temp/var/cache/code/fluid_template/partial_Media_Type_Image_186a4be85f4718e159fe446005a7bb3f93a0718f.php line 2770
      ';
return $output98;
};

$output67 .= TYPO3Fluid\Fluid\ViewHelpers\IfViewHelper::renderStatic($arguments68, $renderChildrenClosure69, $renderingContext);

$output67 .= '
    ';
return $output67;
at partial_Media_Type_Image_186a4be85f4718e159fe446005a7bb3f93a0718f->{closure}()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 136
    private static function evaluateElseClosures(array $closures, array $conditionClosures, RenderingContextInterface $renderingContext)
    {
        foreach ($closures as $elseNodeIndex => $elseNodeClosure) {
            if (!isset($conditionClosures[$elseNodeIndex])) {
                return $elseNodeClosure();
            } else {
                if ($conditionClosures[$elseNodeIndex]()) {
                    return $elseNodeClosure();
                }
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::evaluateElseClosures()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 82
                return $arguments['__thenClosure']();
            }
        } elseif (!empty($arguments['__elseClosures'])) {
            $elseIfClosures = isset($arguments['__elseifClosures']) ? $arguments['__elseifClosures'] : [];
            return static::evaluateElseClosures($arguments['__elseClosures'], $elseIfClosures, $renderingContext);
        } elseif (array_key_exists('else', $arguments)) {
            return $arguments['else'];
        }
        return '';
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::renderStatic()
in /var/www/vhosts/verwandern.de/httpdocs/typo3temp/var/cache/code/fluid_template/partial_Media_Type_Image_186a4be85f4718e159fe446005a7bb3f93a0718f.php line 2777
    ';
return $output67;
};

$output44 .= TYPO3Fluid\Fluid\ViewHelpers\IfViewHelper::renderStatic($arguments53, $renderChildrenClosure54, $renderingContext);

$output44 .= '
   ';
// Rendering ViewHelper TYPO3Fluid\Fluid\ViewHelpers\CommentViewHelper
at partial_Media_Type_Image_186a4be85f4718e159fe446005a7bb3f93a0718f->{closure}()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 136
    private static function evaluateElseClosures(array $closures, array $conditionClosures, RenderingContextInterface $renderingContext)
    {
        foreach ($closures as $elseNodeIndex => $elseNodeClosure) {
            if (!isset($conditionClosures[$elseNodeIndex])) {
                return $elseNodeClosure();
            } else {
                if ($conditionClosures[$elseNodeIndex]()) {
                    return $elseNodeClosure();
                }
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::evaluateElseClosures()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 82
                return $arguments['__thenClosure']();
            }
        } elseif (!empty($arguments['__elseClosures'])) {
            $elseIfClosures = isset($arguments['__elseifClosures']) ? $arguments['__elseifClosures'] : [];
            return static::evaluateElseClosures($arguments['__elseClosures'], $elseIfClosures, $renderingContext);
        } elseif (array_key_exists('else', $arguments)) {
            return $arguments['else'];
        }
        return '';
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::renderStatic()
in /var/www/vhosts/verwandern.de/httpdocs/typo3temp/var/cache/code/fluid_template/partial_Media_Type_Image_186a4be85f4718e159fe446005a7bb3f93a0718f.php line 3063
 ';
return $output44;
};

$output33 .= TYPO3Fluid\Fluid\ViewHelpers\IfViewHelper::renderStatic($arguments34, $renderChildrenClosure35, $renderingContext);

$output33 .= '


at partial_Media_Type_Image_186a4be85f4718e159fe446005a7bb3f93a0718f->render()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/vendor/typo3fluid/fluid/src/View/AbstractTemplateView.php line 329
        $this->startRendering(self::RENDERING_PARTIAL, $parsedPartial, $renderingContext);
        if ($sectionName !== null) {
            $output = $this->renderSection($sectionName, $variables, $ignoreUnknown);
        } else {
            $output = $parsedPartial->render($renderingContext);
        }
        $this->stopRendering();
        return $output;
    }
at TYPO3Fluid\Fluid\View\AbstractTemplateView->renderPartial()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/vendor/typo3fluid/fluid/src/ViewHelpers/RenderViewHelper.php line 171
            $renderingContext = clone $renderingContext;
            $renderingContext->getVariableProvider()->setSource($variables);
            $content = (new $delegate())->render($renderingContext);
        } elseif ($partial !== null) {
            $content = $view->renderPartial($partial, $section, $variables, $optional);
        } elseif ($section !== null) {
            $content = $view->renderSection($section, $variables, $optional);
        } elseif (!$optional) {
            throw new \InvalidArgumentException('ViewHelper f:render called without either argument section, partial, renderable or delegate and optional flag is false');
at TYPO3Fluid\Fluid\ViewHelpers\RenderViewHelper::renderStatic()
in /var/www/vhosts/verwandern.de/httpdocs/typo3temp/var/cache/code/fluid_template/partial_Media_Type_5dba89d379a84440c19352b050dec107253be157.php line 333
$array54 = array (
);$array50['celink'] = $renderingContext->getVariableProvider()->getByPath('celink', $array54);
$arguments48['arguments'] = $array50;

$output47 .= TYPO3\CMS\Fluid\ViewHelpers\RenderViewHelper::renderStatic($arguments48, $renderChildrenClosure49, $renderingContext);

$output47 .= '
 ';
return $output47;
at partial_Media_Type_5dba89d379a84440c19352b050dec107253be157->{closure}()
in /var/www/vhosts/verwandern.de/httpdocs/typo3temp/var/cache/code/fluid_template/partial_Media_Type_5dba89d379a84440c19352b050dec107253be157.php line 338

$output47 .= '
 ';
return $output47;
});
}
}, array($arguments1));

$output0 .= '
at partial_Media_Type_5dba89d379a84440c19352b050dec107253be157->{closure}()
in /var/www/vhosts/verwandern.de/httpdocs/typo3temp/var/cache/code/fluid_template/partial_Media_Type_5dba89d379a84440c19352b050dec107253be157.php line 340
 ';
return $output47;
});
}
}, array($arguments1));

$output0 .= '

';
at partial_Media_Type_5dba89d379a84440c19352b050dec107253be157->render()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/vendor/typo3fluid/fluid/src/View/AbstractTemplateView.php line 329
        $this->startRendering(self::RENDERING_PARTIAL, $parsedPartial, $renderingContext);
        if ($sectionName !== null) {
            $output = $this->renderSection($sectionName, $variables, $ignoreUnknown);
        } else {
            $output = $parsedPartial->render($renderingContext);
        }
        $this->stopRendering();
        return $output;
    }
at TYPO3Fluid\Fluid\View\AbstractTemplateView->renderPartial()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/vendor/typo3fluid/fluid/src/ViewHelpers/RenderViewHelper.php line 171
            $renderingContext = clone $renderingContext;
            $renderingContext->getVariableProvider()->setSource($variables);
            $content = (new $delegate())->render($renderingContext);
        } elseif ($partial !== null) {
            $content = $view->renderPartial($partial, $section, $variables, $optional);
        } elseif ($section !== null) {
            $content = $view->renderSection($section, $variables, $optional);
        } elseif (!$optional) {
            throw new \InvalidArgumentException('ViewHelper f:render called without either argument section, partial, renderable or delegate and optional flag is false');
at TYPO3Fluid\Fluid\ViewHelpers\RenderViewHelper::renderStatic()
in /var/www/vhosts/verwandern.de/httpdocs/typo3temp/var/cache/code/fluid_template/partial_Content_Media_Gallery_077df78b41ee1fc5d9f00716cd5d7e83a077a741.php line 644
$array113 = array (
);$array109['celink'] = $renderingContext->getVariableProvider()->getByPath('celink', $array113);
$arguments107['arguments'] = $array109;

$output96 .= TYPO3\CMS\Fluid\ViewHelpers\RenderViewHelper::renderStatic($arguments107, $renderChildrenClosure108, $renderingContext);

$output96 .= '
      </div>
     ';
at partial_Content_Media_Gallery_077df78b41ee1fc5d9f00716cd5d7e83a077a741->{closure}()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 78
            if (isset($arguments['then'])) {
                return $arguments['then'];
            }
            if (isset($arguments['__thenClosure'])) {
                return $arguments['__thenClosure']();
            }
        } elseif (!empty($arguments['__elseClosures'])) {
            $elseIfClosures = isset($arguments['__elseifClosures']) ? $arguments['__elseifClosures'] : [];
            return static::evaluateElseClosures($arguments['__elseClosures'], $elseIfClosures, $renderingContext);
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::renderStatic()
in /var/www/vhosts/verwandern.de/httpdocs/typo3temp/var/cache/code/fluid_template/partial_Content_Media_Gallery_077df78b41ee1fc5d9f00716cd5d7e83a077a741.php line 670
     $renderingContext
    );
$arguments91['__thenClosure'] = $renderChildrenClosure92;

$output90 .= TYPO3Fluid\Fluid\ViewHelpers\IfViewHelper::renderStatic($arguments91, $renderChildrenClosure92, $renderingContext);

$output90 .= '
    ';
return $output90;
at partial_Content_Media_Gallery_077df78b41ee1fc5d9f00716cd5d7e83a077a741->{closure}()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/vendor/typo3fluid/fluid/src/ViewHelpers/ForViewHelper.php line 148
                $templateVariableContainer->add($arguments['iteration'], $iterationData);
                $iterationData['index']++;
                $iterationData['cycle']++;
            }
            $output .= $renderChildrenClosure();
            $templateVariableContainer->remove($arguments['as']);
            if (isset($arguments['key'])) {
                $templateVariableContainer->remove($arguments['key']);
            }
at TYPO3Fluid\Fluid\ViewHelpers\ForViewHelper::renderStatic()
in /var/www/vhosts/verwandern.de/httpdocs/typo3temp/var/cache/code/fluid_template/partial_Content_Media_Gallery_077df78b41ee1fc5d9f00716cd5d7e83a077a741.php line 687
);$arguments87['each'] = $renderingContext->getVariableProvider()->getByPath('row.columns', $array89);
$arguments87['as'] = 'column';
$arguments87['iteration'] = 'iterator';

$output86 .= TYPO3Fluid\Fluid\ViewHelpers\ForViewHelper::renderStatic($arguments87, $renderChildrenClosure88, $renderingContext);

$output86 .= '
   </div>
  ';
at partial_Content_Media_Gallery_077df78b41ee1fc5d9f00716cd5d7e83a077a741->{closure}()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/vendor/typo3fluid/fluid/src/ViewHelpers/ForViewHelper.php line 148
                $templateVariableContainer->add($arguments['iteration'], $iterationData);
                $iterationData['index']++;
                $iterationData['cycle']++;
            }
            $output .= $renderChildrenClosure();
            $templateVariableContainer->remove($arguments['as']);
            if (isset($arguments['key'])) {
                $templateVariableContainer->remove($arguments['key']);
            }
at TYPO3Fluid\Fluid\ViewHelpers\ForViewHelper::renderStatic()
in /var/www/vhosts/verwandern.de/httpdocs/typo3temp/var/cache/code/fluid_template/partial_Content_Media_Gallery_077df78b41ee1fc5d9f00716cd5d7e83a077a741.php line 705
);$arguments83['each'] = $renderingContext->getVariableProvider()->getByPath('gallery.rows', $array85);
$arguments83['as'] = 'row';
$arguments83['iteration'] = 'rowiterator';

$output82 .= TYPO3Fluid\Fluid\ViewHelpers\ForViewHelper::renderStatic($arguments83, $renderChildrenClosure84, $renderingContext);

$output82 .= '
';

at partial_Content_Media_Gallery_077df78b41ee1fc5d9f00716cd5d7e83a077a741->section_0c77aeece8c258113148c6fb487946bf97b34672()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/vendor/typo3fluid/fluid/src/View/AbstractTemplateView.php line 260
                    );
                }
            }
            $this->startRendering($renderingTypeOnNextLevel, $parsedTemplate, $renderingContext);
            $output = $parsedTemplate->$methodNameOfSection($renderingContext);
            $this->stopRendering();
        } else {
            $sections = $parsedTemplate->getVariableContainer()->get('1457379500_sections');
            if (!isset($sections[$sectionName])) {
at TYPO3Fluid\Fluid\View\AbstractTemplateView->renderSection()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/vendor/typo3fluid/fluid/src/ViewHelpers/RenderViewHelper.php line 173
            $content = (new $delegate())->render($renderingContext);
        } elseif ($partial !== null) {
            $content = $view->renderPartial($partial, $section, $variables, $optional);
        } elseif ($section !== null) {
            $content = $view->renderSection($section, $variables, $optional);
        } elseif (!$optional) {
            throw new \InvalidArgumentException('ViewHelper f:render called without either argument section, partial, renderable or delegate and optional flag is false');
        }
        // Replace empty content with default value. If default is
at TYPO3Fluid\Fluid\ViewHelpers\RenderViewHelper::renderStatic()
in /var/www/vhosts/verwandern.de/httpdocs/typo3temp/var/cache/code/fluid_template/partial_Content_Media_Gallery_077df78b41ee1fc5d9f00716cd5d7e83a077a741.php line 486
$arguments14['debug'] = true;
$arguments14['section'] = 'Media';
$arguments14['arguments'] = $renderingContext->getVariableProvider()->getAll();

$output12 .= TYPO3\CMS\Fluid\ViewHelpers\RenderViewHelper::renderStatic($arguments14, $renderChildrenClosure15, $renderingContext);

$output12 .= '
    </div>
   ';
at partial_Content_Media_Gallery_077df78b41ee1fc5d9f00716cd5d7e83a077a741->{closure}()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 78
            if (isset($arguments['then'])) {
                return $arguments['then'];
            }
            if (isset($arguments['__thenClosure'])) {
                return $arguments['__thenClosure']();
            }
        } elseif (!empty($arguments['__elseClosures'])) {
            $elseIfClosures = isset($arguments['__elseifClosures']) ? $arguments['__elseifClosures'] : [];
            return static::evaluateElseClosures($arguments['__elseClosures'], $elseIfClosures, $renderingContext);
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::renderStatic()
in /var/www/vhosts/verwandern.de/httpdocs/typo3temp/var/cache/code/fluid_template/partial_Content_Media_Gallery_077df78b41ee1fc5d9f00716cd5d7e83a077a741.php line 523
   ';
return $output17;
};

$output9 .= TYPO3Fluid\Fluid\ViewHelpers\IfViewHelper::renderStatic($arguments10, $renderChildrenClosure11, $renderingContext);

$output9 .= '
 ';
return $output9;
at partial_Content_Media_Gallery_077df78b41ee1fc5d9f00716cd5d7e83a077a741->{closure}()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 136
    private static function evaluateElseClosures(array $closures, array $conditionClosures, RenderingContextInterface $renderingContext)
    {
        foreach ($closures as $elseNodeIndex => $elseNodeClosure) {
            if (!isset($conditionClosures[$elseNodeIndex])) {
                return $elseNodeClosure();
            } else {
                if ($conditionClosures[$elseNodeIndex]()) {
                    return $elseNodeClosure();
                }
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::evaluateElseClosures()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 82
                return $arguments['__thenClosure']();
            }
        } elseif (!empty($arguments['__elseClosures'])) {
            $elseIfClosures = isset($arguments['__elseifClosures']) ? $arguments['__elseifClosures'] : [];
            return static::evaluateElseClosures($arguments['__elseClosures'], $elseIfClosures, $renderingContext);
        } elseif (array_key_exists('else', $arguments)) {
            return $arguments['else'];
        }
        return '';
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::renderStatic()
in /var/www/vhosts/verwandern.de/httpdocs/typo3temp/var/cache/code/fluid_template/partial_Content_Media_Gallery_077df78b41ee1fc5d9f00716cd5d7e83a077a741.php line 530
 ';
return $output9;
};

$output0 .= TYPO3Fluid\Fluid\ViewHelpers\IfViewHelper::renderStatic($arguments1, $renderChildrenClosure2, $renderingContext);

$output0 .= '
';

at partial_Content_Media_Gallery_077df78b41ee1fc5d9f00716cd5d7e83a077a741->section_c327b469b0f9503779707f42986c69fc58a35c8d()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/vendor/typo3fluid/fluid/src/View/AbstractTemplateView.php line 260
                    );
                }
            }
            $this->startRendering($renderingTypeOnNextLevel, $parsedTemplate, $renderingContext);
            $output = $parsedTemplate->$methodNameOfSection($renderingContext);
            $this->stopRendering();
        } else {
            $sections = $parsedTemplate->getVariableContainer()->get('1457379500_sections');
            if (!isset($sections[$sectionName])) {
at TYPO3Fluid\Fluid\View\AbstractTemplateView->renderSection()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/vendor/typo3fluid/fluid/src/ViewHelpers/RenderViewHelper.php line 173
            $content = (new $delegate())->render($renderingContext);
        } elseif ($partial !== null) {
            $content = $view->renderPartial($partial, $section, $variables, $optional);
        } elseif ($section !== null) {
            $content = $view->renderSection($section, $variables, $optional);
        } elseif (!$optional) {
            throw new \InvalidArgumentException('ViewHelper f:render called without either argument section, partial, renderable or delegate and optional flag is false');
        }
        // Replace empty content with default value. If default is
at TYPO3Fluid\Fluid\ViewHelpers\RenderViewHelper::renderStatic()
in /var/www/vhosts/verwandern.de/httpdocs/typo3temp/var/cache/code/fluid_template/partial_Content_Media_Gallery_077df78b41ee1fc5d9f00716cd5d7e83a077a741.php line 1412
$arguments174['debug'] = true;
$arguments174['section'] = 'GalleryRows';
$arguments174['arguments'] = $renderingContext->getVariableProvider()->getAll();

$output168 .= TYPO3\CMS\Fluid\ViewHelpers\RenderViewHelper::renderStatic($arguments174, $renderChildrenClosure175, $renderingContext);

$output168 .= '
   </div>
   ';
at partial_Content_Media_Gallery_077df78b41ee1fc5d9f00716cd5d7e83a077a741->{closure}()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 136
    private static function evaluateElseClosures(array $closures, array $conditionClosures, RenderingContextInterface $renderingContext)
    {
        foreach ($closures as $elseNodeIndex => $elseNodeClosure) {
            if (!isset($conditionClosures[$elseNodeIndex])) {
                return $elseNodeClosure();
            } else {
                if ($conditionClosures[$elseNodeIndex]()) {
                    return $elseNodeClosure();
                }
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::evaluateElseClosures()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 82
                return $arguments['__thenClosure']();
            }
        } elseif (!empty($arguments['__elseClosures'])) {
            $elseIfClosures = isset($arguments['__elseifClosures']) ? $arguments['__elseifClosures'] : [];
            return static::evaluateElseClosures($arguments['__elseClosures'], $elseIfClosures, $renderingContext);
        } elseif (array_key_exists('else', $arguments)) {
            return $arguments['else'];
        }
        return '';
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::renderStatic()
in /var/www/vhosts/verwandern.de/httpdocs/typo3temp/var/cache/code/fluid_template/partial_Content_Media_Gallery_077df78b41ee1fc5d9f00716cd5d7e83a077a741.php line 1450
  ';
return $output168;
};

$output123 .= TYPO3Fluid\Fluid\ViewHelpers\IfViewHelper::renderStatic($arguments126, $renderChildrenClosure127, $renderingContext);

$output123 .= '
';
return $output123;
at partial_Content_Media_Gallery_077df78b41ee1fc5d9f00716cd5d7e83a077a741->{closure}()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 78
            if (isset($arguments['then'])) {
                return $arguments['then'];
            }
            if (isset($arguments['__thenClosure'])) {
                return $arguments['__thenClosure']();
            }
        } elseif (!empty($arguments['__elseClosures'])) {
            $elseIfClosures = isset($arguments['__elseifClosures']) ? $arguments['__elseifClosures'] : [];
            return static::evaluateElseClosures($arguments['__elseClosures'], $elseIfClosures, $renderingContext);
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::renderStatic()
in /var/www/vhosts/verwandern.de/httpdocs/typo3temp/var/cache/code/fluid_template/partial_Content_Media_Gallery_077df78b41ee1fc5d9f00716cd5d7e83a077a741.php line 1478
     $renderingContext
    );
$arguments117['__thenClosure'] = $renderChildrenClosure118;

$output114 .= TYPO3Fluid\Fluid\ViewHelpers\IfViewHelper::renderStatic($arguments117, $renderChildrenClosure118, $renderingContext);

$output114 .= '


at partial_Content_Media_Gallery_077df78b41ee1fc5d9f00716cd5d7e83a077a741->render()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/vendor/typo3fluid/fluid/src/View/AbstractTemplateView.php line 329
        $this->startRendering(self::RENDERING_PARTIAL, $parsedPartial, $renderingContext);
        if ($sectionName !== null) {
            $output = $this->renderSection($sectionName, $variables, $ignoreUnknown);
        } else {
            $output = $parsedPartial->render($renderingContext);
        }
        $this->stopRendering();
        return $output;
    }
at TYPO3Fluid\Fluid\View\AbstractTemplateView->renderPartial()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/vendor/typo3fluid/fluid/src/ViewHelpers/RenderViewHelper.php line 171
            $renderingContext = clone $renderingContext;
            $renderingContext->getVariableProvider()->setSource($variables);
            $content = (new $delegate())->render($renderingContext);
        } elseif ($partial !== null) {
            $content = $view->renderPartial($partial, $section, $variables, $optional);
        } elseif ($section !== null) {
            $content = $view->renderSection($section, $variables, $optional);
        } elseif (!$optional) {
            throw new \InvalidArgumentException('ViewHelper f:render called without either argument section, partial, renderable or delegate and optional flag is false');
at TYPO3Fluid\Fluid\ViewHelpers\RenderViewHelper::renderStatic()
in /var/www/vhosts/verwandern.de/httpdocs/typo3temp/var/cache/code/fluid_template/Standard_action_textpic_4bc2428fc8a7f60ad1b559c9334fb6f9a90121d7.php line 824
$arguments23['debug'] = true;
$arguments23['partial'] = 'Content/Media/Gallery';
$arguments23['arguments'] = $renderingContext->getVariableProvider()->getAll();

$output22 .= TYPO3\CMS\Fluid\ViewHelpers\RenderViewHelper::renderStatic($arguments23, $renderChildrenClosure24, $renderingContext);

$output22 .= '
   ';
return $output22;
at Standard_action_textpic_4bc2428fc8a7f60ad1b559c9334fb6f9a90121d7->{closure}()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 136
    private static function evaluateElseClosures(array $closures, array $conditionClosures, RenderingContextInterface $renderingContext)
    {
        foreach ($closures as $elseNodeIndex => $elseNodeClosure) {
            if (!isset($conditionClosures[$elseNodeIndex])) {
                return $elseNodeClosure();
            } else {
                if ($conditionClosures[$elseNodeIndex]()) {
                    return $elseNodeClosure();
                }
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::evaluateElseClosures()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 82
                return $arguments['__thenClosure']();
            }
        } elseif (!empty($arguments['__elseClosures'])) {
            $elseIfClosures = isset($arguments['__elseifClosures']) ? $arguments['__elseifClosures'] : [];
            return static::evaluateElseClosures($arguments['__elseClosures'], $elseIfClosures, $renderingContext);
        } elseif (array_key_exists('else', $arguments)) {
            return $arguments['else'];
        }
        return '';
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::renderStatic()
in /var/www/vhosts/verwandern.de/httpdocs/typo3temp/var/cache/code/fluid_template/Standard_action_textpic_4bc2428fc8a7f60ad1b559c9334fb6f9a90121d7.php line 831
   ';
return $output22;
};

$output6 .= TYPO3Fluid\Fluid\ViewHelpers\IfViewHelper::renderStatic($arguments7, $renderChildrenClosure8, $renderingContext);

$output6 .= '
 ';
return $output6;
at Standard_action_textpic_4bc2428fc8a7f60ad1b559c9334fb6f9a90121d7->{closure}()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 78
            if (isset($arguments['then'])) {
                return $arguments['then'];
            }
            if (isset($arguments['__thenClosure'])) {
                return $arguments['__thenClosure']();
            }
        } elseif (!empty($arguments['__elseClosures'])) {
            $elseIfClosures = isset($arguments['__elseifClosures']) ? $arguments['__elseifClosures'] : [];
            return static::evaluateElseClosures($arguments['__elseClosures'], $elseIfClosures, $renderingContext);
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::renderStatic()
in /var/www/vhosts/verwandern.de/httpdocs/typo3temp/var/cache/code/fluid_template/Standard_action_textpic_4bc2428fc8a7f60ad1b559c9334fb6f9a90121d7.php line 1006
 ';
return $output53;
};

$output3 .= TYPO3Fluid\Fluid\ViewHelpers\IfViewHelper::renderStatic($arguments4, $renderChildrenClosure5, $renderingContext);

$output3 .= '
';

at Standard_action_textpic_4bc2428fc8a7f60ad1b559c9334fb6f9a90121d7->section_62bce9422ff2d14f69ab80a154510232fc8a9afd()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/vendor/typo3fluid/fluid/src/View/AbstractTemplateView.php line 260
                    );
                }
            }
            $this->startRendering($renderingTypeOnNextLevel, $parsedTemplate, $renderingContext);
            $output = $parsedTemplate->$methodNameOfSection($renderingContext);
            $this->stopRendering();
        } else {
            $sections = $parsedTemplate->getVariableContainer()->get('1457379500_sections');
            if (!isset($sections[$sectionName])) {
at TYPO3Fluid\Fluid\View\AbstractTemplateView->renderSection()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/vendor/typo3fluid/fluid/src/ViewHelpers/RenderViewHelper.php line 173
            $content = (new $delegate())->render($renderingContext);
        } elseif ($partial !== null) {
            $content = $view->renderPartial($partial, $section, $variables, $optional);
        } elseif ($section !== null) {
            $content = $view->renderSection($section, $variables, $optional);
        } elseif (!$optional) {
            throw new \InvalidArgumentException('ViewHelper f:render called without either argument section, partial, renderable or delegate and optional flag is false');
        }
        // Replace empty content with default value. If default is
at TYPO3Fluid\Fluid\ViewHelpers\RenderViewHelper::renderStatic()
in /var/www/vhosts/verwandern.de/httpdocs/typo3temp/var/cache/code/fluid_template/layout_Default_html_13cc7dd78578ade1720716ce18b046cf5d5ee642.php line 1301
$arguments64['debug'] = true;
$arguments64['section'] = 'Main';
$arguments64['arguments'] = $renderingContext->getVariableProvider()->getAll();

$output48 .= TYPO3\CMS\Fluid\ViewHelpers\RenderViewHelper::renderStatic($arguments64, $renderChildrenClosure65, $renderingContext);

$output48 .= '
     </div>
    ';
at layout_Default_html_13cc7dd78578ade1720716ce18b046cf5d5ee642->{closure}()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 136
    private static function evaluateElseClosures(array $closures, array $conditionClosures, RenderingContextInterface $renderingContext)
    {
        foreach ($closures as $elseNodeIndex => $elseNodeClosure) {
            if (!isset($conditionClosures[$elseNodeIndex])) {
                return $elseNodeClosure();
            } else {
                if ($conditionClosures[$elseNodeIndex]()) {
                    return $elseNodeClosure();
                }
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::evaluateElseClosures()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 82
                return $arguments['__thenClosure']();
            }
        } elseif (!empty($arguments['__elseClosures'])) {
            $elseIfClosures = isset($arguments['__elseifClosures']) ? $arguments['__elseifClosures'] : [];
            return static::evaluateElseClosures($arguments['__elseClosures'], $elseIfClosures, $renderingContext);
        } elseif (array_key_exists('else', $arguments)) {
            return $arguments['else'];
        }
        return '';
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::renderStatic()
in /var/www/vhosts/verwandern.de/httpdocs/typo3temp/var/cache/code/fluid_template/layout_Default_html_13cc7dd78578ade1720716ce18b046cf5d5ee642.php line 1309
    ';
return $output48;
};

$output32 .= TYPO3Fluid\Fluid\ViewHelpers\IfViewHelper::renderStatic($arguments33, $renderChildrenClosure34, $renderingContext);

$output32 .= '
  ';
return $output32;
at layout_Default_html_13cc7dd78578ade1720716ce18b046cf5d5ee642->{closure}()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/fluid/Classes/ViewHelpers/Link/TypolinkViewHelper.php line 146
        // expose internal typoLink configuration to Fluid child context
        $variableProvider = $renderingContext->getVariableProvider();
        $variableProvider->add($partsAs, $typoLinkConfiguration);
        // If no link has to be rendered, the inner content will be returned as such
        $content = (string)$renderChildrenClosure();
        // clean up exposed variables
        $variableProvider->remove($partsAs);

        if ($parameter) {
at TYPO3\CMS\Fluid\ViewHelpers\Link\TypolinkViewHelper::renderStatic()
in /var/www/vhosts/verwandern.de/httpdocs/typo3temp/var/cache/code/fluid_template/layout_Default_html_13cc7dd78578ade1720716ce18b046cf5d5ee642.php line 1362

$output26 .= TYPO3Fluid\Fluid\ViewHelpers\IfViewHelper::renderStatic($arguments27, $renderChildrenClosure28, $renderingContext);
$arguments23['class'] = $output26;

$output13 .= TYPO3\CMS\Fluid\ViewHelpers\Link\TypolinkViewHelper::renderStatic($arguments23, $renderChildrenClosure24, $renderingContext);

$output13 .= '
  ';
// Rendering ViewHelper TYPO3Fluid\Fluid\ViewHelpers\IfViewHelper
at layout_Default_html_13cc7dd78578ade1720716ce18b046cf5d5ee642->{closure}()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 136
    private static function evaluateElseClosures(array $closures, array $conditionClosures, RenderingContextInterface $renderingContext)
    {
        foreach ($closures as $elseNodeIndex => $elseNodeClosure) {
            if (!isset($conditionClosures[$elseNodeIndex])) {
                return $elseNodeClosure();
            } else {
                if ($conditionClosures[$elseNodeIndex]()) {
                    return $elseNodeClosure();
                }
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::evaluateElseClosures()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 82
                return $arguments['__thenClosure']();
            }
        } elseif (!empty($arguments['__elseClosures'])) {
            $elseIfClosures = isset($arguments['__elseifClosures']) ? $arguments['__elseifClosures'] : [];
            return static::evaluateElseClosures($arguments['__elseClosures'], $elseIfClosures, $renderingContext);
        } elseif (array_key_exists('else', $arguments)) {
            return $arguments['else'];
        }
        return '';
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::renderStatic()
in /var/www/vhosts/verwandern.de/httpdocs/typo3temp/var/cache/code/fluid_template/layout_Default_html_13cc7dd78578ade1720716ce18b046cf5d5ee642.php line 1410
 ';
return $output13;
};

$output6 .= TYPO3Fluid\Fluid\ViewHelpers\IfViewHelper::renderStatic($arguments7, $renderChildrenClosure8, $renderingContext);

$output6 .= ' 
';
return $output6;
at layout_Default_html_13cc7dd78578ade1720716ce18b046cf5d5ee642->{closure}()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/vendor/typo3fluid/fluid/src/ViewHelpers/SpacelessViewHelper.php line 60
     * @return string
     */
    public static function renderStatic(array $arguments, \Closure $childClosure, RenderingContextInterface $renderingContext)
    {
        return trim(preg_replace('/\\>\\s+\\</', '><', (string)$childClosure()));
    }
}
at TYPO3Fluid\Fluid\ViewHelpers\SpacelessViewHelper::renderStatic()
in /var/www/vhosts/verwandern.de/httpdocs/typo3temp/var/cache/code/fluid_template/layout_Default_html_13cc7dd78578ade1720716ce18b046cf5d5ee642.php line 1418
return $output6;
};
$arguments4 = array();

$output0 .= TYPO3Fluid\Fluid\ViewHelpers\SpacelessViewHelper::renderStatic($arguments4, $renderChildrenClosure5, $renderingContext);

$output0 .= '

';
at layout_Default_html_13cc7dd78578ade1720716ce18b046cf5d5ee642->render()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/vendor/typo3fluid/fluid/src/View/AbstractTemplateView.php line 201
            } catch (PassthroughSourceException $error) {
                return $error->getSource();
            }
            $this->startRendering(self::RENDERING_LAYOUT, $parsedTemplate, $this->baseRenderingContext);
            $output = $parsedLayout->render($this->baseRenderingContext);
            $this->stopRendering();
        }

        return $output;
at TYPO3Fluid\Fluid\View\AbstractTemplateView->render()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/frontend/Classes/ContentObject/FluidTemplateContentObject.php line 341
     * @return string
     */
    protected function renderFluidView()
    {
        return $this->view->render();
    }

    /**
     * Apply standard wrap to content
at TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject->renderFluidView()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/frontend/Classes/ContentObject/FluidTemplateContentObject.php line 106

        $this->view->assignMultiple($variables);

        $this->renderFluidTemplateAssetsIntoPageRenderer();
        $content = $this->renderFluidView();
        $content = $this->applyStandardWrapToRenderedContent($content, $conf);

        $this->view = $parentView;
        return $content;
at TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject->render()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 800
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 736
            $timeTracker->decStackPointer();
        } else {
            $contentObject = $this->getContentObject($name);
            if ($contentObject) {
                $content .= $this->render($contentObject, $conf);
            }
        }
        if ($timeTracker->LR) {
            $timeTracker->pull($content);
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 731
            [$name, $conf] = $cF->getVal($key, $this->getTypoScriptFrontendController()->tmpl->setup);
            $conf = array_replace_recursive($conf, $confOverride);
            // Getting the cObject
            $timeTracker->incStackPointer();
            $content .= $this->cObjGetSingle($name, $conf, $key);
            $timeTracker->decStackPointer();
        } else {
            $contentObject = $this->getContentObject($name);
            if ($contentObject) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/frontend/Classes/ContentObject/CaseContentObject.php line 45
        // If no "default" property is available, then an empty string is returned
        if ($key === 'default' && !isset($conf['default'])) {
            $theValue = '';
        } else {
            $theValue = $this->cObj->cObjGetSingle($conf[$key], $conf[$key . '.'] ?? [], $key);
        }
        if (isset($conf['stdWrap.'])) {
            $theValue = $this->cObj->stdWrap($theValue, $conf['stdWrap.']);
        }
at TYPO3\CMS\Frontend\ContentObject\CaseContentObject->render()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 800
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 736
            $timeTracker->decStackPointer();
        } else {
            $contentObject = $this->getContentObject($name);
            if ($contentObject) {
                $content .= $this->render($contentObject, $conf);
            }
        }
        if ($timeTracker->LR) {
            $timeTracker->pull($content);
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 731
            [$name, $conf] = $cF->getVal($key, $this->getTypoScriptFrontendController()->tmpl->setup);
            $conf = array_replace_recursive($conf, $confOverride);
            // Getting the cObject
            $timeTracker->incStackPointer();
            $content .= $this->cObjGetSingle($name, $conf, $key);
            $timeTracker->decStackPointer();
        } else {
            $contentObject = $this->getContentObject($name);
            if ($contentObject) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/frontend/Classes/ContentObject/RecordsContentObject.php line 128
                            $cObj->parentRecordNumber = $this->cObj->currentRecordNumber;
                            $GLOBALS['TSFE']->currentRecord = $val['table'] . ':' . $val['id'];
                            $this->cObj->lastChanged($row['tstamp'] ?? 0);
                            $cObj->start($row, $val['table'], $this->request);
                            $tmpValue = $cObj->cObjGetSingle($renderObjName, $renderObjConf, $renderObjKey);
                            $theValue .= $tmpValue;
                        }
                    }
                }
at TYPO3\CMS\Frontend\ContentObject\RecordsContentObject->render()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 800
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render()
in /var/www/vhosts/verwandern.de/httpdocs/typo3conf/ext/container/Classes/DataProcessing/ContainerProcessor.php line 131
            }
            if ($child['t3ver_oid'] > 0) {
                $conf['source'] = $child['t3ver_oid'];
            }
            $child['renderedContent'] = $cObj->render($contentRecordRenderer, $conf);
            /** @var ContentObjectRenderer $recordContentObjectRenderer */
            $recordContentObjectRenderer = GeneralUtility::makeInstance(ContentObjectRenderer::class);
            $recordContentObjectRenderer->start($child, 'tt_content');
            $child = $this->contentDataProcessor->process($recordContentObjectRenderer, $processorConfiguration, $child);
at B13\Container\DataProcessing\ContainerProcessor->processColPos()
in /var/www/vhosts/verwandern.de/httpdocs/typo3conf/ext/container/Classes/DataProcessing/ContainerProcessor.php line 97
            if ($processorConfiguration['as']) {
                $as = $processorConfiguration['as'];
            }
            $processedData = $this->processColPos(
                $cObj,
                $container,
                $colPos,
                $as,
                $processedData,
at B13\Container\DataProcessing\ContainerProcessor->process()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/frontend/Classes/ContentObject/ContentDataProcessor.php line 56
            foreach ($processorKeys as $key) {
                $dataProcessor = $this->getDataProcessor($processors[$key]);
                $processorConfiguration = $processors[$key . '.'] ?? [];
                $variables = $dataProcessor->process(
                    $cObject,
                    $configuration,
                    $processorConfiguration,
                    $variables
                );
at TYPO3\CMS\Frontend\ContentObject\ContentDataProcessor->process()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/frontend/Classes/ContentObject/FluidTemplateContentObject.php line 101
        $this->setPartialRootPath($conf);
        $this->setExtbaseVariables($conf);
        $this->assignSettings($conf);
        $variables = $this->getContentObjectVariables($conf);
        $variables = $this->contentDataProcessor->process($this->cObj, $conf, $variables);

        $this->view->assignMultiple($variables);

        $this->renderFluidTemplateAssetsIntoPageRenderer();
at TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject->render()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 800
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 736
            $timeTracker->decStackPointer();
        } else {
            $contentObject = $this->getContentObject($name);
            if ($contentObject) {
                $content .= $this->render($contentObject, $conf);
            }
        }
        if ($timeTracker->LR) {
            $timeTracker->pull($content);
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/frontend/Classes/ContentObject/CaseContentObject.php line 45
        // If no "default" property is available, then an empty string is returned
        if ($key === 'default' && !isset($conf['default'])) {
            $theValue = '';
        } else {
            $theValue = $this->cObj->cObjGetSingle($conf[$key], $conf[$key . '.'] ?? [], $key);
        }
        if (isset($conf['stdWrap.'])) {
            $theValue = $this->cObj->stdWrap($theValue, $conf['stdWrap.']);
        }
at TYPO3\CMS\Frontend\ContentObject\CaseContentObject->render()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 800
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 736
            $timeTracker->decStackPointer();
        } else {
            $contentObject = $this->getContentObject($name);
            if ($contentObject) {
                $content .= $this->render($contentObject, $conf);
            }
        }
        if ($timeTracker->LR) {
            $timeTracker->pull($content);
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 731
            [$name, $conf] = $cF->getVal($key, $this->getTypoScriptFrontendController()->tmpl->setup);
            $conf = array_replace_recursive($conf, $confOverride);
            // Getting the cObject
            $timeTracker->incStackPointer();
            $content .= $this->cObjGetSingle($name, $conf, $key);
            $timeTracker->decStackPointer();
        } else {
            $contentObject = $this->getContentObject($name);
            if ($contentObject) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/frontend/Classes/ContentObject/ContentContentObject.php line 98
                        $cObj->parentRecordNumber = $this->cObj->currentRecordNumber;
                        $frontendController->currentRecord = $registerField;
                        $this->cObj->lastChanged($row['tstamp'] ?? 0);
                        $cObj->start($row, $conf['table'], $this->request);
                        $tmpValue = $cObj->cObjGetSingle($renderObjName, $renderObjConf, $renderObjKey);
                        $cobjValue .= $tmpValue;
                    }
                }
            }
at TYPO3\CMS\Frontend\ContentObject\ContentContentObject->render()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 800
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 736
            $timeTracker->decStackPointer();
        } else {
            $contentObject = $this->getContentObject($name);
            if ($contentObject) {
                $content .= $this->render($contentObject, $conf);
            }
        }
        if ($timeTracker->LR) {
            $timeTracker->pull($content);
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 698
        foreach ($sKeyArray as $theKey) {
            $theValue = $setup[$theKey];
            if ((int)$theKey && !str_contains($theKey, '.')) {
                $conf = $setup[$theKey . '.'] ?? [];
                $content .= $this->cObjGetSingle($theValue, $conf, $addKey . $theKey);
            }
        }
        return $content;
    }
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGet()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/frontend/Classes/ContentObject/ContentObjectArrayContentObject.php line 43
        if (!empty($conf['if.']) && !$this->cObj->checkIf($conf['if.'])) {
            return '';
        }

        $content = $this->cObj->cObjGet($conf);
        $wrap = $this->cObj->stdWrapValue('wrap', $conf ?? []);
        if ($wrap) {
            $content = $this->cObj->wrap($content, $wrap);
        }
at TYPO3\CMS\Frontend\ContentObject\ContentObjectArrayContentObject->render()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 800
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 736
            $timeTracker->decStackPointer();
        } else {
            $contentObject = $this->getContentObject($name);
            if ($contentObject) {
                $content .= $this->render($contentObject, $conf);
            }
        }
        if ($timeTracker->LR) {
            $timeTracker->pull($content);
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/fluid/Classes/ViewHelpers/CObjectViewHelper.php line 197
        if ($timeTracker->LR) {
            $timeTracker->push('/f:cObject/', '<' . $typoscriptObjectPath);
        }
        $timeTracker->incStackPointer();
        $content = $contentObjectRenderer->cObjGetSingle($setup[$lastSegment], $setup[$lastSegment . '.'] ?? [], $typoscriptObjectPath);
        $timeTracker->decStackPointer();
        if ($timeTracker->LR) {
            $timeTracker->pull($content);
        }
at TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderContentObject()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/fluid/Classes/ViewHelpers/CObjectViewHelper.php line 174
                'No Content Object definition found at TypoScript object path "' . $typoscriptObjectPath . '"',
                1540246570
            );
        }
        $content = self::renderContentObject($contentObjectRenderer, $setup, $typoscriptObjectPath, $lastSegment);
        if (!isset($GLOBALS['TSFE']) || !($GLOBALS['TSFE'] instanceof TypoScriptFrontendController)) {
            static::resetFrontendEnvironment();
        }
        return $content;
at TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderStatic()
in /var/www/vhosts/verwandern.de/httpdocs/typo3temp/var/cache/code/fluid_template/partial_BackendLayouts_OneCol_519fd4bcea9b8fd94ccbf5f3947e4f49399d876c.php line 366
);$array44['pageUid'] = $renderingContext->getVariableProvider()->getByPath('data.uid', $array45);
$array44['colPos'] = 0;
$arguments42['data'] = $array44;
$renderChildrenClosure43 = ($arguments42['data'] !== null) ? function() use ($arguments42) { return $arguments42['data']; } : $renderChildrenClosure43;
$output41 .= TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderStatic($arguments42, $renderChildrenClosure43, $renderingContext);

$output41 .= '
  ';
return $output41;
at partial_BackendLayouts_OneCol_519fd4bcea9b8fd94ccbf5f3947e4f49399d876c->{closure}()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 136
    private static function evaluateElseClosures(array $closures, array $conditionClosures, RenderingContextInterface $renderingContext)
    {
        foreach ($closures as $elseNodeIndex => $elseNodeClosure) {
            if (!isset($conditionClosures[$elseNodeIndex])) {
                return $elseNodeClosure();
            } else {
                if ($conditionClosures[$elseNodeIndex]()) {
                    return $elseNodeClosure();
                }
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::evaluateElseClosures()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 82
                return $arguments['__thenClosure']();
            }
        } elseif (!empty($arguments['__elseClosures'])) {
            $elseIfClosures = isset($arguments['__elseifClosures']) ? $arguments['__elseifClosures'] : [];
            return static::evaluateElseClosures($arguments['__elseClosures'], $elseIfClosures, $renderingContext);
        } elseif (array_key_exists('else', $arguments)) {
            return $arguments['else'];
        }
        return '';
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::renderStatic()
in /var/www/vhosts/verwandern.de/httpdocs/typo3temp/var/cache/code/fluid_template/partial_BackendLayouts_OneCol_519fd4bcea9b8fd94ccbf5f3947e4f49399d876c.php line 373
  ';
return $output41;
};

$output0 .= TYPO3Fluid\Fluid\ViewHelpers\IfViewHelper::renderStatic($arguments34, $renderChildrenClosure35, $renderingContext);

$output0 .= '
</main>

at partial_BackendLayouts_OneCol_519fd4bcea9b8fd94ccbf5f3947e4f49399d876c->render()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/vendor/typo3fluid/fluid/src/View/AbstractTemplateView.php line 329
        $this->startRendering(self::RENDERING_PARTIAL, $parsedPartial, $renderingContext);
        if ($sectionName !== null) {
            $output = $this->renderSection($sectionName, $variables, $ignoreUnknown);
        } else {
            $output = $parsedPartial->render($renderingContext);
        }
        $this->stopRendering();
        return $output;
    }
at TYPO3Fluid\Fluid\View\AbstractTemplateView->renderPartial()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/vendor/typo3fluid/fluid/src/ViewHelpers/RenderViewHelper.php line 171
            $renderingContext = clone $renderingContext;
            $renderingContext->getVariableProvider()->setSource($variables);
            $content = (new $delegate())->render($renderingContext);
        } elseif ($partial !== null) {
            $content = $view->renderPartial($partial, $section, $variables, $optional);
        } elseif ($section !== null) {
            $content = $view->renderSection($section, $variables, $optional);
        } elseif (!$optional) {
            throw new \InvalidArgumentException('ViewHelper f:render called without either argument section, partial, renderable or delegate and optional flag is false');
at TYPO3Fluid\Fluid\ViewHelpers\RenderViewHelper::renderStatic()
in /var/www/vhosts/verwandern.de/httpdocs/typo3temp/var/cache/code/fluid_template/Standard_action_index_8514d52bd4653a82174554af27f59b3737c1f0ab.php line 219
$output13 .= $renderingContext->getVariableProvider()->getByPath('be_layout', $array14);
$arguments11['partial'] = $output13;
$arguments11['arguments'] = $renderingContext->getVariableProvider()->getAll();

$output10 .= TYPO3\CMS\Fluid\ViewHelpers\RenderViewHelper::renderStatic($arguments11, $renderChildrenClosure12, $renderingContext);

$output10 .= '
   ';
return $output10;
at Standard_action_index_8514d52bd4653a82174554af27f59b3737c1f0ab->{closure}()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 78
            if (isset($arguments['then'])) {
                return $arguments['then'];
            }
            if (isset($arguments['__thenClosure'])) {
                return $arguments['__thenClosure']();
            }
        } elseif (!empty($arguments['__elseClosures'])) {
            $elseIfClosures = isset($arguments['__elseifClosures']) ? $arguments['__elseifClosures'] : [];
            return static::evaluateElseClosures($arguments['__elseClosures'], $elseIfClosures, $renderingContext);
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::renderStatic()
in /var/www/vhosts/verwandern.de/httpdocs/typo3temp/var/cache/code/fluid_template/Standard_action_index_8514d52bd4653a82174554af27f59b3737c1f0ab.php line 255
   ';
return $output16;
};

$output0 .= TYPO3Fluid\Fluid\ViewHelpers\IfViewHelper::renderStatic($arguments8, $renderChildrenClosure9, $renderingContext);

$output0 .= '
 </div>
';
at Standard_action_index_8514d52bd4653a82174554af27f59b3737c1f0ab->section_e435c89d5cba9b2846882f39f7c202e0769a44ad()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/vendor/typo3fluid/fluid/src/View/AbstractTemplateView.php line 260
                    );
                }
            }
            $this->startRendering($renderingTypeOnNextLevel, $parsedTemplate, $renderingContext);
            $output = $parsedTemplate->$methodNameOfSection($renderingContext);
            $this->stopRendering();
        } else {
            $sections = $parsedTemplate->getVariableContainer()->get('1457379500_sections');
            if (!isset($sections[$sectionName])) {
at TYPO3Fluid\Fluid\View\AbstractTemplateView->renderSection()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/vendor/typo3fluid/fluid/src/ViewHelpers/RenderViewHelper.php line 173
            $content = (new $delegate())->render($renderingContext);
        } elseif ($partial !== null) {
            $content = $view->renderPartial($partial, $section, $variables, $optional);
        } elseif ($section !== null) {
            $content = $view->renderSection($section, $variables, $optional);
        } elseif (!$optional) {
            throw new \InvalidArgumentException('ViewHelper f:render called without either argument section, partial, renderable or delegate and optional flag is false');
        }
        // Replace empty content with default value. If default is
at TYPO3Fluid\Fluid\ViewHelpers\RenderViewHelper::renderStatic()
in /var/www/vhosts/verwandern.de/httpdocs/typo3temp/var/cache/code/fluid_template/Standard_action_index_8514d52bd4653a82174554af27f59b3737c1f0ab.php line 4357
$arguments356['debug'] = true;
$arguments356['section'] = 'PageContent';
$arguments356['arguments'] = $renderingContext->getVariableProvider()->getAll();

$output355 .= TYPO3\CMS\Fluid\ViewHelpers\RenderViewHelper::renderStatic($arguments356, $renderChildrenClosure357, $renderingContext);

$output355 .= '
       ';
return $output355;
at Standard_action_index_8514d52bd4653a82174554af27f59b3737c1f0ab->{closure}()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 78
            if (isset($arguments['then'])) {
                return $arguments['then'];
            }
            if (isset($arguments['__thenClosure'])) {
                return $arguments['__thenClosure']();
            }
        } elseif (!empty($arguments['__elseClosures'])) {
            $elseIfClosures = isset($arguments['__elseifClosures']) ? $arguments['__elseifClosures'] : [];
            return static::evaluateElseClosures($arguments['__elseClosures'], $elseIfClosures, $renderingContext);
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::renderStatic()
in /var/www/vhosts/verwandern.de/httpdocs/typo3temp/var/cache/code/fluid_template/Standard_action_index_8514d52bd4653a82174554af27f59b3737c1f0ab.php line 4395
       ';
return $output359;
};

$output352 .= TYPO3Fluid\Fluid\ViewHelpers\IfViewHelper::renderStatic($arguments353, $renderChildrenClosure354, $renderingContext);

$output352 .= '
     ';
return $output352;
at Standard_action_index_8514d52bd4653a82174554af27f59b3737c1f0ab->{closure}()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 136
    private static function evaluateElseClosures(array $closures, array $conditionClosures, RenderingContextInterface $renderingContext)
    {
        foreach ($closures as $elseNodeIndex => $elseNodeClosure) {
            if (!isset($conditionClosures[$elseNodeIndex])) {
                return $elseNodeClosure();
            } else {
                if ($conditionClosures[$elseNodeIndex]()) {
                    return $elseNodeClosure();
                }
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::evaluateElseClosures()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 82
                return $arguments['__thenClosure']();
            }
        } elseif (!empty($arguments['__elseClosures'])) {
            $elseIfClosures = isset($arguments['__elseifClosures']) ? $arguments['__elseifClosures'] : [];
            return static::evaluateElseClosures($arguments['__elseClosures'], $elseIfClosures, $renderingContext);
        } elseif (array_key_exists('else', $arguments)) {
            return $arguments['else'];
        }
        return '';
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::renderStatic()
in /var/www/vhosts/verwandern.de/httpdocs/typo3temp/var/cache/code/fluid_template/Standard_action_index_8514d52bd4653a82174554af27f59b3737c1f0ab.php line 4402
     ';
return $output352;
};

$output282 .= TYPO3Fluid\Fluid\ViewHelpers\IfViewHelper::renderStatic($arguments345, $renderChildrenClosure346, $renderingContext);

$output282 .= '
   </div>
   ';
at Standard_action_index_8514d52bd4653a82174554af27f59b3737c1f0ab->{closure}()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/vendor/typo3fluid/fluid/src/ViewHelpers/SpacelessViewHelper.php line 60
     * @return string
     */
    public static function renderStatic(array $arguments, \Closure $childClosure, RenderingContextInterface $renderingContext)
    {
        return trim(preg_replace('/\\>\\s+\\</', '><', (string)$childClosure()));
    }
}
at TYPO3Fluid\Fluid\ViewHelpers\SpacelessViewHelper::renderStatic()
in /var/www/vhosts/verwandern.de/httpdocs/typo3temp/var/cache/code/fluid_template/Standard_action_index_8514d52bd4653a82174554af27f59b3737c1f0ab.php line 4871
return $output282;
};
$arguments280 = array();

$output279 .= TYPO3Fluid\Fluid\ViewHelpers\SpacelessViewHelper::renderStatic($arguments280, $renderChildrenClosure281, $renderingContext);

$output279 .= '
 ';
return $output279;
at Standard_action_index_8514d52bd4653a82174554af27f59b3737c1f0ab->{closure}()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 136
    private static function evaluateElseClosures(array $closures, array $conditionClosures, RenderingContextInterface $renderingContext)
    {
        foreach ($closures as $elseNodeIndex => $elseNodeClosure) {
            if (!isset($conditionClosures[$elseNodeIndex])) {
                return $elseNodeClosure();
            } else {
                if ($conditionClosures[$elseNodeIndex]()) {
                    return $elseNodeClosure();
                }
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::evaluateElseClosures()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 82
                return $arguments['__thenClosure']();
            }
        } elseif (!empty($arguments['__elseClosures'])) {
            $elseIfClosures = isset($arguments['__elseifClosures']) ? $arguments['__elseifClosures'] : [];
            return static::evaluateElseClosures($arguments['__elseClosures'], $elseIfClosures, $renderingContext);
        } elseif (array_key_exists('else', $arguments)) {
            return $arguments['else'];
        }
        return '';
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::renderStatic()
in /var/www/vhosts/verwandern.de/httpdocs/typo3temp/var/cache/code/fluid_template/Standard_action_index_8514d52bd4653a82174554af27f59b3737c1f0ab.php line 4878
 ';
return $output279;
};

$output276 .= TYPO3Fluid\Fluid\ViewHelpers\IfViewHelper::renderStatic($arguments277, $renderChildrenClosure278, $renderingContext);

$output276 .= '


at Standard_action_index_8514d52bd4653a82174554af27f59b3737c1f0ab->render()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/vendor/typo3fluid/fluid/src/View/AbstractTemplateView.php line 186
        }

        if (!$parsedTemplate->hasLayout()) {
            $this->startRendering(self::RENDERING_TEMPLATE, $parsedTemplate, $this->baseRenderingContext);
            $output = $parsedTemplate->render($this->baseRenderingContext);
            $this->stopRendering();
        } else {
            $layoutName = $parsedTemplate->getLayoutName($this->baseRenderingContext);
            try {
at TYPO3Fluid\Fluid\View\AbstractTemplateView->render()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/frontend/Classes/ContentObject/FluidTemplateContentObject.php line 341
     * @return string
     */
    protected function renderFluidView()
    {
        return $this->view->render();
    }

    /**
     * Apply standard wrap to content
at TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject->renderFluidView()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/frontend/Classes/ContentObject/FluidTemplateContentObject.php line 106

        $this->view->assignMultiple($variables);

        $this->renderFluidTemplateAssetsIntoPageRenderer();
        $content = $this->renderFluidView();
        $content = $this->applyStandardWrapToRenderedContent($content, $conf);

        $this->view = $parentView;
        return $content;
at TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject->render()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 800
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 736
            $timeTracker->decStackPointer();
        } else {
            $contentObject = $this->getContentObject($name);
            if ($contentObject) {
                $content .= $this->render($contentObject, $conf);
            }
        }
        if ($timeTracker->LR) {
            $timeTracker->pull($content);
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 698
        foreach ($sKeyArray as $theKey) {
            $theValue = $setup[$theKey];
            if ((int)$theKey && !str_contains($theKey, '.')) {
                $conf = $setup[$theKey . '.'] ?? [];
                $content .= $this->cObjGetSingle($theValue, $conf, $addKey . $theKey);
            }
        }
        return $content;
    }
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGet()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/frontend/Classes/Http/RequestHandler.php line 223
     * @return string
     */
    protected function generatePageBodyContent(TypoScriptFrontendController $controller): string
    {
        $pageContent = $controller->cObj->cObjGet($controller->pSetup) ?: '';
        if ($controller->pSetup['wrap'] ?? false) {
            $pageContent = $controller->cObj->wrap($pageContent, $controller->pSetup['wrap']);
        }
        if ($controller->pSetup['stdWrap.'] ?? false) {
at TYPO3\CMS\Frontend\Http\RequestHandler->generatePageBodyContent()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/frontend/Classes/Http/RequestHandler.php line 189
    protected function generatePageContent(TypoScriptFrontendController $controller, ServerRequestInterface $request): string
    {
        // Generate the main content between the <body> tags
        // This has to be done first, as some additional TSFE-related code could have been written
        $pageContent = $this->generatePageBodyContent($controller);
        // If 'disableAllHeaderCode' is set, all the pageRenderer settings are not evaluated
        if ($controller->config['config']['disableAllHeaderCode'] ?? false) {
            return $pageContent;
        }
at TYPO3\CMS\Frontend\Http\RequestHandler->generatePageContent()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/frontend/Classes/Http/RequestHandler.php line 141
            // Content generation
            $this->timeTracker->incStackPointer();
            $this->timeTracker->push($controller->sPre, 'PAGE');

            $controller->content = $this->generatePageContent($controller, $request);

            $this->timeTracker->pull($this->timeTracker->LR ? $controller->content : '');
            $this->timeTracker->decStackPointer();

at TYPO3\CMS\Frontend\Http\RequestHandler->handle()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/core/Classes/Middleware/ResponsePropagation.php line 34
{
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        try {
            $response = $handler->handle($request);
        } catch (PropagateResponseException $e) {
            $response = $e->getResponse();
        }

at TYPO3\CMS\Core\Middleware\ResponsePropagation->process()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1d9->handle()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/adminpanel/Classes/Middleware/AdminPanelDataPersister.php line 44
     * @return ResponseInterface
     */
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $response = $handler->handle($request);
        if (
            $GLOBALS['TSFE'] instanceof TypoScriptFrontendController
            && StateUtility::isActivatedForUser()
            && StateUtility::isActivatedInTypoScript()
at TYPO3\CMS\Adminpanel\Middleware\AdminPanelDataPersister->process()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1d9->handle()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/adminpanel/Classes/Middleware/AdminPanelRenderer.php line 46
     * @return ResponseInterface
     */
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $response = $handler->handle($request);
        if (
            $GLOBALS['TSFE'] instanceof TypoScriptFrontendController
            && StateUtility::isActivatedForUser()
            && StateUtility::isActivatedInTypoScript()
at TYPO3\CMS\Adminpanel\Middleware\AdminPanelRenderer->process()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1d9->handle()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/frontend/Classes/Middleware/ContentLengthResponseHeader.php line 46
     * @return ResponseInterface
     */
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $response = $handler->handle($request);
        if ($GLOBALS['TSFE'] instanceof TypoScriptFrontendController) {
            if (
                    (!isset($GLOBALS['TSFE']->config['config']['enableContentLengthHeader']) || $GLOBALS['TSFE']->config['config']['enableContentLengthHeader'])
                    && !$GLOBALS['TSFE']->isBackendUserLoggedIn() && !($GLOBALS['TYPO3_CONF_VARS']['FE']['debug'] ?? false)
at TYPO3\CMS\Frontend\Middleware\ContentLengthResponseHeader->process()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1d9->handle()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/frontend/Classes/Middleware/ShortcutAndMountPointRedirect.php line 79
                );
            }
        }

        return $handler->handle($request);
    }

    protected function getRedirectUri(ServerRequestInterface $request): ?string
    {
at TYPO3\CMS\Frontend\Middleware\ShortcutAndMountPointRedirect->process()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1d9->handle()
in /var/www/vhosts/verwandern.de/httpdocs/typo3conf/ext/vhs/Classes/Middleware/AssetInclusion.php line 19
class AssetInclusion implements MiddlewareInterface
{
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $response = $handler->handle($request);

        $body = $response->getBody();
        $body->rewind();
        $contents = $body->getContents();
at FluidTYPO3\Vhs\Middleware\AssetInclusion->process()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1d9->handle()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/frontend/Classes/Middleware/OutputCompression.php line 48
        // Throw away all output that may have happened during bootstrapping by weird extensions
        ob_clean();
        // Initialize output compression if configured
        $this->initializeOutputCompression();
        return $handler->handle($request);
    }

    /**
     * Initialize output compression if configured
at TYPO3\CMS\Frontend\Middleware\OutputCompression->process()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1d9->handle()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/frontend/Classes/Middleware/PrepareTypoScriptFrontendRendering.php line 78
                $this->convertCharsetRecursivelyToUtf8($parsedBody, $controller->metaCharset);
                $request = $request->withParsedBody($parsedBody);
            }
        }
        $response = $handler->handle($request);

        /**
         * Release TSFE locks. They have been acquired in the above call to controller->getFromCache().
         * TSFE locks are usually released by the RequestHandler 'final' middleware.
at TYPO3\CMS\Frontend\Middleware\PrepareTypoScriptFrontendRendering->process()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1d9->handle()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/frontend/Classes/Middleware/TypoScriptFrontendInitialization.php line 104
        // Make TSFE globally available
        // @todo deprecate $GLOBALS['TSFE'] once TSFE is retrieved from the
        //       PSR-7 request attribute frontend.controller throughout TYPO3 core
        $GLOBALS['TSFE'] = $controller;
        return $handler->handle($request);
    }
}
at TYPO3\CMS\Frontend\Middleware\TypoScriptFrontendInitialization->process()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1d9->handle()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/frontend/Classes/Middleware/PageArgumentValidator.php line 132
            }
        }

        $request = $request->withAttribute('noCache', $this->disableCache);
        return $handler->handle($request);
    }

    /**
     * Filters out the arguments that are necessary for calculating cHash
at TYPO3\CMS\Frontend\Middleware\PageArgumentValidator->process()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1d9->handle()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/frontend/Classes/Middleware/PreviewSimulator.php line 66
            $previewAspect = GeneralUtility::makeInstance(PreviewAspect::class, $isPreview);
            $this->context->setAspect('frontend.preview', $previewAspect);
        }

        return $handler->handle($request);
    }

    /**
     * Simulate dates for preview functionality
at TYPO3\CMS\Frontend\Middleware\PreviewSimulator->process()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1d9->handle()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/adminpanel/Classes/Middleware/SqlLogging.php line 58
        if (StateUtility::isActivatedForUser() && StateUtility::isOpen()) {
            $connection = $this->connectionPool->getConnectionByName(ConnectionPool::DEFAULT_CONNECTION_NAME);
            $connection->getConfiguration()->setSQLLogger(GeneralUtility::makeInstance(DoctrineSqlLogger::class));
        }
        return $handler->handle($request);
    }
}
at TYPO3\CMS\Adminpanel\Middleware\SqlLogging->process()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1d9->handle()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/frontend/Classes/Middleware/PageResolver.php line 106
        // merge the PageArguments with the request query parameters
        $queryParams = array_replace_recursive($request->getQueryParams(), $pageArguments->getArguments());
        $request = $request->withQueryParams($queryParams);

        return $handler->handle($request);
    }
}
at TYPO3\CMS\Frontend\Middleware\PageResolver->process()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1d9->handle()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/frontend/Classes/Middleware/StaticRouteResolver.php line 80

                return new HtmlResponse($content, 200, ['Content-Type' => $contentType]);
            }
        }
        return $handler->handle($request);
    }

    /**
     * Find the proper configuration for the static route in the static route configuration. Mainly:
at TYPO3\CMS\Frontend\Middleware\StaticRouteResolver->process()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1d9->handle()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/frontend/Classes/Middleware/SiteBaseRedirectResolver.php line 94
                $uri = $requestedUri->withPath(rtrim($requestedUri->getPath(), '/'));
                return new RedirectResponse($uri, 307);
            }
        }
        return $handler->handle($request);
    }

    /**
     * Checks if the language is allowed in Frontend, if not, check if there is valid BE user
at TYPO3\CMS\Frontend\Middleware\SiteBaseRedirectResolver->process()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1d9->handle()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/adminpanel/Classes/Middleware/AdminPanelInitiator.php line 55
                MainController::class
            );
            $request = $adminPanelController->initialize($request);
        }
        return $handler->handle($request);
    }
}
at TYPO3\CMS\Adminpanel\Middleware\AdminPanelInitiator->process()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1d9->handle()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/frontend/Classes/Middleware/FrontendUserAuthenticator.php line 91
        if ($this->context->getAspect('frontend.user')->isLoggedIn() && $rateLimiter) {
            $rateLimiter->reset();
        }

        $response = $handler->handle($request);

        // Store session data for fe_users if it still exists
        if ($frontendUser instanceof FrontendUserAuthentication) {
            $frontendUser->storeSessionData();
at TYPO3\CMS\Frontend\Middleware\FrontendUserAuthenticator->process()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1d9->handle()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/frontend/Classes/Middleware/BackendUserAuthenticator.php line 78
            Bootstrap::loadExtTables();
            $this->setBackendUserAspect($GLOBALS['BE_USER']);
        }

        $response = $handler->handle($request);

        // If, when building the response, the user is still available, then ensure that the headers are sent properly
        if ($this->context->getAspect('backend.user')->isLoggedIn()) {
            return $this->applyHeadersToResponse($response);
at TYPO3\CMS\Frontend\Middleware\BackendUserAuthenticator->process()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1d9->handle()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/frontend/Classes/Middleware/MaintenanceMode.php line 55
        ) {
            return GeneralUtility::makeInstance(ErrorController::class)->unavailableAction($request, 'This page is temporarily unavailable.');
        }
        // Continue the regular stack if no maintenance mode is active
        return $handler->handle($request);
    }
}
at TYPO3\CMS\Frontend\Middleware\MaintenanceMode->process()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1d9->handle()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/frontend/Classes/Middleware/SiteResolver.php line 65
        $request = $request->withAttribute('routing', $routeResult);
        if ($routeResult->getLanguage() instanceof SiteLanguage) {
            Locales::setSystemLocaleFromSiteLanguage($routeResult->getLanguage());
        }
        return $handler->handle($request);
    }
}
at TYPO3\CMS\Frontend\Middleware\SiteResolver->process()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1d9->handle()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/frontend/Classes/Middleware/EidHandler.php line 64
    {
        $eID = $request->getParsedBody()['eID'] ?? $request->getQueryParams()['eID'] ?? null;

        if ($eID === null) {
            return $handler->handle($request);
        }

        // Remove any output produced until now
        ob_clean();
at TYPO3\CMS\Frontend\Middleware\EidHandler->process()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1d9->handle()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/core/Classes/Middleware/NormalizedParamsAttribute.php line 45
     */
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $request = $request->withAttribute('normalizedParams', NormalizedParams::createFromRequest($request));
        return $handler->handle($request);
    }
}
at TYPO3\CMS\Core\Middleware\NormalizedParamsAttribute->process()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1d9->handle()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/core/Classes/Middleware/VerifyHostHeader.php line 55
                1396795884
            );
        }

        return $handler->handle($request);
    }

    /**
     * Checks if the provided host header value matches the trusted hosts pattern.
at TYPO3\CMS\Core\Middleware\VerifyHostHeader->process()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1d9->handle()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/frontend/Classes/Middleware/TimeTrackerInitialization.php line 58
        $this->timeTracker->setEnabled($timeTrackingEnabled);
        $this->timeTracker->start(microtime(true));
        $this->timeTracker->push('');

        $response = $handler->handle($request);

        // Finish time tracking
        $this->timeTracker->pull();
        $this->timeTracker->finish();
at TYPO3\CMS\Frontend\Middleware\TimeTrackerInitialization->process()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1d9->handle()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 78
     * @return ResponseInterface
     */
    public function handle(ServerRequestInterface $request): ResponseInterface
    {
        return $this->tip->handle($request);
    }

    /**
     * Seed the middleware stack with the inner request handler
at TYPO3\CMS\Core\Http\MiddlewareDispatcher->handle()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/core/Classes/Http/AbstractApplication.php line 86
     */
    public function handle(ServerRequestInterface $request): ResponseInterface
    {
        try {
            $response = $this->requestHandler->handle($request);
        } catch (ImmediateResponseException $exception) {
            $response = $exception->getResponse();
        }
        return $response;
at TYPO3\CMS\Core\Http\AbstractApplication->handle()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/frontend/Classes/Http/Application.php line 69
        // Create new request object having applicationType "I am a frontend request" attribute.
        $request = $request->withAttribute('applicationType', SystemEnvironmentBuilder::REQUESTTYPE_FE);

        $this->initializeContext();
        return parent::handle($request);
    }

    /**
     * Create a PSR-7 Response that redirects to the install tool
at TYPO3\CMS\Frontend\Http\Application->handle()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/typo3/sysext/core/Classes/Http/AbstractApplication.php line 100
     * @param callable $execute Deprecated, will be removed in TYPO3 v12.0
     */
    final public function run(callable $execute = null)
    {
        $response = $this->handle(ServerRequestFactory::fromGlobals());
        if ($execute !== null) {
            trigger_error('Custom execution of Application code will be removed in TYPO3 v12.0, use PSR-15 Middlewares instead.', E_USER_DEPRECATED);
            $execute();
        }
at TYPO3\CMS\Core\Http\AbstractApplication->run()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/index.php line 20
// Set up the application for the frontend
call_user_func(static function () {
    $classLoader = require __DIR__.'/vendor/autoload.php';
    \TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::run(0, \TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::REQUESTTYPE_FE);
    \TYPO3\CMS\Core\Core\Bootstrap::init($classLoader)->get(\TYPO3\CMS\Frontend\Http\Application::class)->run();
});
at {closure}()
in /var/www/vhosts/verwandern.de/httpdocs/typo3_src-11.5.9/index.php line 21
call_user_func(static function () {
    $classLoader = require __DIR__.'/vendor/autoload.php';
    \TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::run(0, \TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::REQUESTTYPE_FE);
    \TYPO3\CMS\Core\Core\Bootstrap::init($classLoader)->get(\TYPO3\CMS\Frontend\Http\Application::class)->run();
});