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) #1381512761 TYPO3\CMS\Core\Type\Exception\InvalidEnumerationValueException

Invalid value "CATEGORY" for enumeration "TYPO3\CMS\Core\DataHandling\TableColumnType"

in /html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Type/Enumeration.php line 57
            $value = static::__default;
        }
        static::loadValues();
        if (!$this->isValid($value)) {
            throw new InvalidEnumerationValueException(
                sprintf('Invalid value "%s" for enumeration "%s"', $value, static::class),
                1381512761
            );
        }
at TYPO3\CMS\Core\Type\Enumeration->__construct('CATEGORY')
in /html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/DataHandling/TableColumnType.php line 53
        if ($type !== null) {
            $type = strtoupper((string)$type);
        }

        parent::__construct($type);
    }
}
at TYPO3\CMS\Core\DataHandling\TableColumnType->__construct('CATEGORY')
in /html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Type/Enumeration.php line 191
     */
    public static function cast($value)
    {
        if (!is_object($value) || get_class($value) !== static::class) {
            $value = new static($value);
        }
        return $value;
    }

at TYPO3\CMS\Core\Type\Enumeration::cast('category')
in /html/typo3/typo3_src-10.4.37/typo3/sysext/extbase/Classes/Persistence/Generic/Mapper/DataMapFactory.php line 298
        // todo: this method should only be called with proper arguments which means that the TCA integrity check should
        // todo: take place outside this method.

        $tableColumnType = $columnConfiguration['type'] ?? null;
        $columnMap->setType(TableColumnType::cast($tableColumnType));
        $tableColumnSubType = $columnConfiguration['internal_type'] ?? null;
        $columnMap->setInternalType(TableColumnSubType::cast($tableColumnSubType));

        return $columnMap;
at TYPO3\CMS\Extbase\Persistence\Generic\Mapper\DataMapFactory->setType(object(TYPO3\CMS\Extbase\Persistence\Generic\Mapper\ColumnMap), array('type' => 'category', 'relationship' => 'oneToMany'))
in /html/typo3/typo3_src-10.4.37/typo3/sysext/extbase/Classes/Persistence/Generic/Mapper/DataMapFactory.php line 178
                [$type, $elementType] = [$property->getType(), $property->getElementType()];
            } catch (NoSuchPropertyException $e) {
                [$type, $elementType] = [null, null];
            }
            $columnMap = $this->setType($columnMap, $columnDefinition['config']);
            $columnMap = $this->setRelations($columnMap, $columnDefinition['config'], $type, $elementType);
            $columnMap = $this->setFieldEvaluations($columnMap, $columnDefinition['config']);
            $dataMap->addColumnMap($columnMap);
        }
at TYPO3\CMS\Extbase\Persistence\Generic\Mapper\DataMapFactory->buildDataMapInternal('SIMONKOEHLER\\Showcase\\Domain\\Model\\Project')
in /html/typo3/typo3_src-10.4.37/typo3/sysext/extbase/Classes/Persistence/Generic/Mapper/DataMapFactory.php line 120
        $cacheIdentifierClassName = str_replace('\\', '', $className);
        $cacheIdentifier = 'DataMap_' . $cacheIdentifierClassName . '_' . sha1((string)(new Typo3Version()) . Environment::getProjectPath());
        $dataMap = $this->dataMapCache->get($cacheIdentifier);
        if ($dataMap === false) {
            $dataMap = $this->buildDataMapInternal($className);
            $this->dataMapCache->set($cacheIdentifier, $dataMap);
        }
        $this->dataMaps[$className] = $dataMap;
        return $dataMap;
at TYPO3\CMS\Extbase\Persistence\Generic\Mapper\DataMapFactory->buildDataMap('SIMONKOEHLER\\Showcase\\Domain\\Model\\Project')
in /html/typo3/typo3_src-10.4.37/typo3/sysext/extbase/Classes/Persistence/Generic/QueryFactory.php line 73
    {
        $query = $this->objectManager->get(QueryInterface::class, $className);
        $querySettings = $this->objectManager->get(QuerySettingsInterface::class);

        $dataMap = $this->dataMapFactory->buildDataMap($className);
        if ($dataMap->getIsStatic() || $dataMap->getRootLevel()) {
            $querySettings->setRespectStoragePage(false);
        }

at TYPO3\CMS\Extbase\Persistence\Generic\QueryFactory->create('SIMONKOEHLER\\Showcase\\Domain\\Model\\Project')
in /html/typo3/typo3_src-10.4.37/typo3/sysext/extbase/Classes/Persistence/Generic/PersistenceManager.php line 183
     * @internal only to be used within Extbase, not part of TYPO3 Core API.
     */
    public function createQueryForType($type)
    {
        return $this->queryFactory->create($type);
    }

    /**
     * Adds an object to the persistence.
at TYPO3\CMS\Extbase\Persistence\Generic\PersistenceManager->createQueryForType('SIMONKOEHLER\\Showcase\\Domain\\Model\\Project')
in /html/typo3/typo3_src-10.4.37/typo3/sysext/extbase/Classes/Persistence/Repository.php line 211
     * @return \TYPO3\CMS\Extbase\Persistence\QueryInterface
     */
    public function createQuery()
    {
        $query = $this->persistenceManager->createQueryForType($this->objectType);
        if ($this->defaultOrderings !== []) {
            $query->setOrderings($this->defaultOrderings);
        }
        if ($this->defaultQuerySettings !== null) {
at TYPO3\CMS\Extbase\Persistence\Repository->createQuery()
in /html/typo3/typo3_src-10.4.37/typo3/sysext/extbase/Classes/Persistence/Repository.php line 233
    public function __call($methodName, $arguments)
    {
        if (strpos($methodName, 'findBy') === 0 && strlen($methodName) > 7) {
            $propertyName = lcfirst(substr($methodName, 6));
            $query = $this->createQuery();
            $result = $query->matching($query->equals($propertyName, $arguments[0]))->execute();
            return $result;
        }
        if (strpos($methodName, 'findOneBy') === 0 && strlen($methodName) > 10) {
at TYPO3\CMS\Extbase\Persistence\Repository->__call('findByPid', array('124'))
in /html/typo3/typo3conf/ext/showcase/Classes/Controller/ProjectController.php line 44
            // Storage folder mode / get projects from specific folder
            case 'storage':

                if($this->settings['recordstorage']){
                    $projects = $this->projectRepository->findByPid($this->settings['recordstorage']);
                    $projectsFinal = $this->projectRepository->addCategoryStringToProjects($projects);
                    $this->view->assign('projects',$projectsFinal);
                }
                else{
at SIMONKOEHLER\Showcase\Controller\ProjectController->listAction()
in /html/typo3/typo3_src-10.4.37/typo3/sysext/extbase/Classes/Mvc/Controller/ActionController.php line 498
        }
        $validationResult = $this->arguments->validate();
        if (!$validationResult->hasErrors()) {
            $this->eventDispatcher->dispatch(new BeforeActionCallEvent(static::class, $this->actionMethodName, $preparedArguments));
            $actionResult = $this->{$this->actionMethodName}(...$preparedArguments);
        } else {
            $actionResult = $this->{$this->errorMethodName}();
        }

at TYPO3\CMS\Extbase\Mvc\Controller\ActionController->callActionMethod()
in /html/typo3/typo3_src-10.4.37/typo3/sysext/extbase/Classes/Mvc/Controller/ActionController.php line 426
        $this->view = $this->resolveView();
        if ($this->view !== null) {
            $this->initializeView($this->view);
        }
        $this->callActionMethod();
        $this->renderAssetsForRequest($request);
    }

    /**
at TYPO3\CMS\Extbase\Mvc\Controller\ActionController->processRequest(object(TYPO3\CMS\Extbase\Mvc\Web\Request), object(TYPO3\CMS\Extbase\Mvc\Web\Response))
in /html/typo3/typo3_src-10.4.37/typo3/sysext/extbase/Classes/Mvc/Dispatcher.php line 89
                throw new InfiniteLoopException('Could not ultimately dispatch the request after ' . $dispatchLoopCount . ' iterations. Most probably, a @' . IgnoreValidation::class . ' annotation is missing on re-displaying a form with validation errors.', 1217839467);
            }
            $controller = $this->resolveController($request);
            try {
                $controller->processRequest($request, $response);
            } catch (StopActionException $ignoredException) {
            }
        }

at TYPO3\CMS\Extbase\Mvc\Dispatcher->dispatch(object(TYPO3\CMS\Extbase\Mvc\Web\Request), object(TYPO3\CMS\Extbase\Mvc\Web\Response))
in /html/typo3/typo3_src-10.4.37/typo3/sysext/extbase/Classes/Mvc/Web/FrontendRequestHandler.php line 66
        }

        /** @var \TYPO3\CMS\Extbase\Mvc\ResponseInterface $response */
        $response = $this->objectManager->get(Response::class);
        $this->dispatcher->dispatch($request, $response);
        return $response;
    }

    /**
at TYPO3\CMS\Extbase\Mvc\Web\FrontendRequestHandler->handleRequest()
in /html/typo3/typo3_src-10.4.37/typo3/sysext/extbase/Classes/Core/Bootstrap.php line 183
    protected function handleRequest(): string
    {
        $requestHandler = $this->requestHandlerResolver->resolveRequestHandler();

        $response = $requestHandler->handleRequest();
        // If response is NULL after handling the request we need to stop
        // This happens for instance, when a USER object was converted to a USER_INT
        // @see TYPO3\CMS\Extbase\Mvc\Web\FrontendRequestHandler::handleRequest()
        if ($response === null) {
at TYPO3\CMS\Extbase\Core\Bootstrap->handleRequest()
in /html/typo3/typo3_src-10.4.37/typo3/sysext/extbase/Classes/Core/Bootstrap.php line 173
     */
    public function run(string $content, array $configuration): string
    {
        $this->initialize($configuration);
        return $this->handleRequest();
    }

    /**
     * @return string
at TYPO3\CMS\Extbase\Core\Bootstrap->run('', array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Showcase', 'pluginName' => 'List'))
at call_user_func_array(array(object(TYPO3\CMS\Extbase\Core\Bootstrap), 'run'), array('', array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Showcase', 'pluginName' => 'List')))
in /html/typo3/typo3_src-10.4.37/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 5720
                if (is_object($classObj) && method_exists($classObj, $parts[1]) && is_callable($callable)) {
                    $classObj->cObj = $this;
                    $content = call_user_func_array($callable, [
                        $content,
                        $conf
                    ]);
                } else {
                    $this->getTimeTracker()->setTSlogMessage('Method "' . $parts[1] . '" did not exist in class "' . $parts[0] . '"', 3);
                }
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->callUserFunction('TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Showcase', 'pluginName' => 'List'), '')
in /html/typo3/typo3_src-10.4.37/typo3/sysext/frontend/Classes/ContentObject/UserContentObject.php line 43
        if ($this->cObj->getUserObjectType() === false) {
            // Come here only if we are not called from $TSFE->processNonCacheableContentPartsAndSubstituteContentMarkers()!
            $this->cObj->setUserObjectType(ContentObjectRenderer::OBJECTTYPE_USER);
        }
        $tempContent = $this->cObj->callUserFunction($conf['userFunc'], $conf, '');
        if ($this->cObj->doConvertToUserIntObject) {
            $this->cObj->doConvertToUserIntObject = false;
            $content = $this->cObj->cObjGetSingle('USER_INT', $conf);
        } else {
at TYPO3\CMS\Frontend\ContentObject\UserContentObject->render(array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Showcase', 'pluginName' => 'List'))
in /html/typo3/typo3_src-10.4.37/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 829
        }

        // 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(object(TYPO3\CMS\Frontend\ContentObject\UserContentObject), array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Showcase', 'pluginName' => 'List'))
in /html/typo3/typo3_src-10.4.37/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 743
                }
                if (!$hooked) {
                    $contentObject = $this->getContentObject($name);
                    if ($contentObject) {
                        $content .= $this->render($contentObject, $conf);
                    } else {
                        // Call hook functions for extra processing
                        if ($name) {
                            if (!empty($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['cObjTypeAndClassDefault'])) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('USER', array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Showcase', 'pluginName' => 'List'), 'tt_content.list.20.showcase_list')
in /html/typo3/typo3_src-10.4.37/typo3/sysext/fluid/Classes/ViewHelpers/CObjectViewHelper.php line 193
        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(object(TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer), array('focuspoint_test' => 'USER', 'focuspoint_test.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Focuspoint', 'pluginName' => 'Test'), 'rxshariff_shariff' => 'USER', 'rxshariff_shariff.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'RxShariff', 'pluginName' => 'Shariff'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'newsslider_pi1' => 'USER', 'newsslider_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Newsslider', 'pluginName' => 'Pi1'), 'dpcookieconsent_pi1' => 'USER', 'dpcookieconsent_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DpCookieconsent', 'pluginName' => 'Pi1'), 'dpcookieconsent_pi2' => 'USER', 'dpcookieconsent_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DpCookieconsent', 'pluginName' => 'Pi2'), 'fpfractionslider_pi1' => 'USER', 'fpfractionslider_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'FpFractionslider', 'pluginName' => 'Pi1'), 'gomapsext_show' => 'USER', 'gomapsext_show.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'GoMapsExt', 'pluginName' => 'Show'), 'instagram_pi1' => 'USER', 'instagram_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Instagram', 'pluginName' => 'Pi1'), 'maps2_maps2' => 'USER', 'maps2_maps2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Maps2', 'pluginName' => 'Maps2'), 'maps2_searchwithinradius' => 'USER', 'maps2_searchwithinradius.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Maps2', 'pluginName' => 'SearchWithinRadius'), 'maps2_citymap' => 'USER', 'maps2_citymap.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Maps2', 'pluginName' => 'CityMap'), 'showcase_list' => 'USER', 'showcase_list.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Showcase', 'pluginName' => 'List'), 'showcase_slider' => 'USER', 'showcase_slider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Showcase', 'pluginName' => 'Slider'), 'showcase_show' => 'USER', 'showcase_show.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Showcase', 'pluginName' => 'Show'), 'ttaddress_listview' => 'USER', 'ttaddress_listview.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'TtAddress', 'pluginName' => 'ListView')), 'tt_content.list.20.showcase_list', 'showcase_list')
in /html/typo3/typo3_src-10.4.37/typo3/sysext/fluid/Classes/ViewHelpers/CObjectViewHelper.php line 170
                '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(array('data' => array('uid' => 3120, 'pid' => 161, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 2199, 'tstamp' => 1683028206, 'crdate' => 1634821945, 'cruser_id' => 3, 'editlock' => 0, 'hidden' => 0, 'sorting' => 773, 'CType' => 'list', 'header' => 'Showcase', 'header_position' => '', 'rowDescription' => '', 'bodytext' => null, 'bullets_type' => 0, 'uploads_description' => 0, 'uploads_type' => 0, 'assets' => 0, 'image' => 0, 'imagewidth' => 0, 'imageorient' => 0, 'imagecols' => 1, 'imageborder' => 0, 'media' => 0, 'layout' => 0, 'frame_class' => 'default', 'deleted' => 0, 'cols' => 0, 'space_before_class' => '', 'space_after_class' => '', 'records' => '', 'pages' => '', 'starttime' => 0, 'endtime' => 0, 'colPos' => 273, 'subheader' => 'Card with Image on Top [card-img-top]', 'fe_group' => '', 'header_link' => '', 'image_zoom' => 0, 'header_layout' => '100', 'list_type' => 'showcase_list', 'sectionIndex' => 0, 'linkToTop' => 0, 'file_collections' => '', 'filelink_size' => 0, 'filelink_sorting' => '', 'target' => '', 'date' => 0, 'recursive' => 0, 'imageheight' => 0, 'sys_language_uid' => 0, 'pi_flexform' => '<?xml version="1.0" encoding="utf-8" standalone="yes" ?><T3FlexForms> <data> <sheet index="sDEF"> <language index="lDEF"> <field index="settings.recordsource"> <value index="vDEF">storage</value> </field> <field index="settings.listlayout"> <value index="vDEF">card-img-top</value> </field> <field index="settings.teaserlength"> <value index="vDEF">60</value> </field> <field index="settings.detailmode"> <value index="vDEF">page</value> </field> <field index="settings.columns"> <value index="vDEF">3</value> </field> <field index="settings.gridlayout"> <value index="vDEF">masonry</value> </field> <field index="settings.previewimagemaxwidth"> <value index="vDEF">480</value> </field> <field index="settings.showcategorymenu"> <value index="vDEF">1</value> </field> <field index="settings.recordlist"> <value index="vDEF"></value> </field> <field index="settings.recordstorage"> <value index="vDEF">124</value> </field> <field index="settings.categoryroot"> <value index="vDEF">11</value> </field> <field index="settings.detailpage"> <value index="vDEF">123</value> </field> </language> </sheet> </data></T3FlexForms>', 'accessibility_title' => '', 'accessibility_bypass' => 0, 'accessibility_bypass_text' => '', 'l18n_parent' => 0, 'l18n_diffsource' => 'a:3:{s:6:"colPos";N;s:16:"sys_language_uid";N;s:19:"tx_container_parent";N;}', 'l10n_source' => 0, 'selected_categories' => '', 'category_field' => '', 'table_class' => '', 'table_caption' => null, 'table_delimiter' => 124, 'table_enclosure' => 0, 'table_header_position' => 0, 'table_tfoot' => 0, 'tx_impexp_origuid' => 0, 'l10n_state' => null, 'categories' => 0, 'tx_news_related_news' => 0, 'tx_t3sbootstrap_header_display' => '', 'tx_t3sbootstrap_header_class' => '', 'tx_t3sbootstrap_padding_sides' => '', 'tx_t3sbootstrap_padding_size' => '0', 'tx_t3sbootstrap_margin_sides' => '', 'tx_t3sbootstrap_margin_size' => '0', 'tx_t3sbootstrap_flexbox_columns' => '', 'tx_t3sbootstrap_flexbox_prefix' => '', 'tx_t3sbootstrap_container' => '0', 'tx_t3sbootstrap_extra_class' => '', 'tx_t3sbootstrap_bgcolor' => '', 'tx_t3sbootstrap_contextcolor' => '', 'tx_t3sbootstrap_textcolor' => '', 'tx_t3sbootstrap_flexform' => '<?xml version="1.0" encoding="utf-8" standalone="yes" ?><T3FlexForms> <data> <sheet index="sDEF"> <language index="lDEF"> <field index="hidden"> <value index="vDEF">0</value> </field> <field index="float"> <value index="vDEF">0</value> </field> <field index="border"> <value index="vDEF">0</value> </field> </language> </sheet> </data></T3FlexForms>', 'tx_t3sbootstrap_inTextImgRowWidth' => 'auto', 'tx_t3sbootstrap_bordercolor' => '', 'tx_t3sbootstrap_header_position' => 'above', 'tx_t3sbootstrap_image_ratio' => '', 'tx_t3sbootstrap_header_fontawesome' => '', 'tx_t3sbootstrap_header_celink' => 0, 'tx_slick_pages' => '', 'filelink_sorting_direction' => '', 'tx_t3sbootstrap_header_sectionMenu' => '', 'tx_t3sbootstrap_bgopacity' => '100', 'tx_t3sbootstrap_animateCss' => '0', 'tx_t3sbootstrap_animateCssDuration' => '0', 'tx_t3sbootstrap_animateCssDelay' => '0', 'tx_t3sbootstrap_animateCssRepeat' => 0, 'tx_t3sbootstrap_sectionOrder' => '0', 'tx_container_parent' => 3119, 'image_ratio' => '', 'tx_t3sbootstrap_extra_style' => '', 'tx_t3sbootstrap_image_orig' => '', 'tx_wsslider_items' => 0, 'tx_wsslider_renderer' => null, 'tx_wsslider_layout' => 'Default', 'tx_t3sbootstrap_inTextImgColumns' => 0, 'tx_t3sbootstrap_galleryGutters' => 0, 'currentValue_kidjls9dksoje' => 'OneCol', 'configuid' => 23), 'typoscriptObjectPath' => 'tt_content.list.20.showcase_list', 'currentValueKey' => null, 'table' => 'tt_content'), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/typo3/typo3temp/var/cache/code/fluid_template/Standard_action_list_4c2f2326ce5149cfc13a59ce4a544d923513fddf.php line 70
$array11 = array (
);$arguments7['data'] = $renderingContext->getVariableProvider()->getByPath('data', $array11);
$arguments7['table'] = 'tt_content';
$renderChildrenClosure8 = ($arguments7['data'] !== null) ? function() use ($arguments7) { return $arguments7['data']; } : $renderChildrenClosure8;
$output6 .= TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderStatic($arguments7, $renderChildrenClosure8, $renderingContext);

$output6 .= '
    ';
return $output6;
at Standard_action_list_4c2f2326ce5149cfc13a59ce4a544d923513fddf->{closure}()
in /html/typo3/typo3_src-10.4.37/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(array('then' => null, 'else' => null, 'condition' => true, '__thenClosure' => object(Closure)), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/typo3/typo3temp/var/cache/code/fluid_template/Standard_action_list_4c2f2326ce5149cfc13a59ce4a544d923513fddf.php line 95
     $renderingContext
    );
$arguments1['__thenClosure'] = $renderChildrenClosure2;

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

$output0 .= '

';
at Standard_action_list_4c2f2326ce5149cfc13a59ce4a544d923513fddf->section_62bce9422ff2d14f69ab80a154510232fc8a9afd(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/typo3/typo3_src-10.4.37/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('Main', array('settings' => array('defaultHeaderType' => '2', 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'media' => array('lazyLoading' => 'lazy', 'popup' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'JSwindow' => array('newWindow' => '0', 'if' => array('isFalse' => '1'), '_typoScriptNodeValue' => '0'), 'directImageLink' => '1', 'crop' => array('data' => 'file:current:crop'), 'linkParams' => array('ATagParams' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig' => array('no-cookie' => '1', 'api' => '0')), 'config' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'be_layout' => 'OneCol', 'data' => array('uid' => 3120, 'pid' => 161, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 2199, 'tstamp' => 1683028206, 'crdate' => 1634821945, 'cruser_id' => 3, 'editlock' => 0, 'hidden' => 0, 'sorting' => 773, 'CType' => 'list', 'header' => 'Showcase', 'header_position' => '', 'rowDescription' => '', 'bodytext' => null, 'bullets_type' => 0, 'uploads_description' => 0, 'uploads_type' => 0, 'assets' => 0, 'image' => 0, 'imagewidth' => 0, 'imageorient' => 0, 'imagecols' => 1, 'imageborder' => 0, 'media' => 0, 'layout' => 0, 'frame_class' => 'default', 'deleted' => 0, 'cols' => 0, 'space_before_class' => '', 'space_after_class' => '', 'records' => '', 'pages' => '', 'starttime' => 0, 'endtime' => 0, 'colPos' => 273, 'subheader' => 'Card with Image on Top [card-img-top]', 'fe_group' => '', 'header_link' => '', 'image_zoom' => 0, 'header_layout' => '100', 'list_type' => 'showcase_list', 'sectionIndex' => 0, 'linkToTop' => 0, 'file_collections' => '', 'filelink_size' => 0, 'filelink_sorting' => '', 'target' => '', 'date' => 0, 'recursive' => 0, 'imageheight' => 0, 'sys_language_uid' => 0, 'pi_flexform' => '<?xml version="1.0" encoding="utf-8" standalone="yes" ?><T3FlexForms> <data> <sheet index="sDEF"> <language index="lDEF"> <field index="settings.recordsource"> <value index="vDEF">storage</value> </field> <field index="settings.listlayout"> <value index="vDEF">card-img-top</value> </field> <field index="settings.teaserlength"> <value index="vDEF">60</value> </field> <field index="settings.detailmode"> <value index="vDEF">page</value> </field> <field index="settings.columns"> <value index="vDEF">3</value> </field> <field index="settings.gridlayout"> <value index="vDEF">masonry</value> </field> <field index="settings.previewimagemaxwidth"> <value index="vDEF">480</value> </field> <field index="settings.showcategorymenu"> <value index="vDEF">1</value> </field> <field index="settings.recordlist"> <value index="vDEF"></value> </field> <field index="settings.recordstorage"> <value index="vDEF">124</value> </field> <field index="settings.categoryroot"> <value index="vDEF">11</value> </field> <field index="settings.detailpage"> <value index="vDEF">123</value> </field> </language> </sheet> </data></T3FlexForms>', 'accessibility_title' => '', 'accessibility_bypass' => 0, 'accessibility_bypass_text' => '', 'l18n_parent' => 0, 'l18n_diffsource' => 'a:3:{s:6:"colPos";N;s:16:"sys_language_uid";N;s:19:"tx_container_parent";N;}', 'l10n_source' => 0, 'selected_categories' => '', 'category_field' => '', 'table_class' => '', 'table_caption' => null, 'table_delimiter' => 124, 'table_enclosure' => 0, 'table_header_position' => 0, 'table_tfoot' => 0, 'tx_impexp_origuid' => 0, 'l10n_state' => null, 'categories' => 0, 'tx_news_related_news' => 0, 'tx_t3sbootstrap_header_display' => '', 'tx_t3sbootstrap_header_class' => '', 'tx_t3sbootstrap_padding_sides' => '', 'tx_t3sbootstrap_padding_size' => '0', 'tx_t3sbootstrap_margin_sides' => '', 'tx_t3sbootstrap_margin_size' => '0', 'tx_t3sbootstrap_flexbox_columns' => '', 'tx_t3sbootstrap_flexbox_prefix' => '', 'tx_t3sbootstrap_container' => '0', 'tx_t3sbootstrap_extra_class' => '', 'tx_t3sbootstrap_bgcolor' => '', 'tx_t3sbootstrap_contextcolor' => '', 'tx_t3sbootstrap_textcolor' => '', 'tx_t3sbootstrap_flexform' => '<?xml version="1.0" encoding="utf-8" standalone="yes" ?><T3FlexForms> <data> <sheet index="sDEF"> <language index="lDEF"> <field index="hidden"> <value index="vDEF">0</value> </field> <field index="float"> <value index="vDEF">0</value> </field> <field index="border"> <value index="vDEF">0</value> </field> </language> </sheet> </data></T3FlexForms>', 'tx_t3sbootstrap_inTextImgRowWidth' => 'auto', 'tx_t3sbootstrap_bordercolor' => '', 'tx_t3sbootstrap_header_position' => 'above', 'tx_t3sbootstrap_image_ratio' => '', 'tx_t3sbootstrap_header_fontawesome' => '', 'tx_t3sbootstrap_header_celink' => 0, 'tx_slick_pages' => '', 'filelink_sorting_direction' => '', 'tx_t3sbootstrap_header_sectionMenu' => '', 'tx_t3sbootstrap_bgopacity' => '100', 'tx_t3sbootstrap_animateCss' => '0', 'tx_t3sbootstrap_animateCssDuration' => '0', 'tx_t3sbootstrap_animateCssDelay' => '0', 'tx_t3sbootstrap_animateCssRepeat' => 0, 'tx_t3sbootstrap_sectionOrder' => '0', 'tx_container_parent' => 3119, 'image_ratio' => '', 'tx_t3sbootstrap_extra_style' => '', 'tx_t3sbootstrap_image_orig' => '', 'tx_wsslider_items' => 0, 'tx_wsslider_renderer' => null, 'tx_wsslider_layout' => 'Default', 'tx_t3sbootstrap_inTextImgColumns' => 0, 'tx_t3sbootstrap_galleryGutters' => 0, 'currentValue_kidjls9dksoje' => 'OneCol', 'configuid' => 23), 'current' => 'OneCol', 'dataAnimate' => false, 'isAnimateCss' => false, 'animateCssRepeat' => false, 'class' => '', 'header' => array('class' => '', 'hClass' => '', 'hColorVar' => '', 'hLine' => '', 'default' => '2'), 'style' => '', 'isTxContainer' => false, 'codesnippet' => false, 'containerError' => false, 'typoLinkParts' => array('url' => '', 'target' => '', 'class' => '', 'title' => '', 'additionalParams' => '')), false)
in /html/typo3/typo3_src-10.4.37/vendor/typo3fluid/fluid/src/ViewHelpers/RenderViewHelper.php line 143
            $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(array('section' => 'Main', 'partial' => null, 'delegate' => null, 'renderable' => null, 'arguments' => array('settings' => array('defaultHeaderType' => '2', 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'media' => array('lazyLoading' => 'lazy', 'popup' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'JSwindow' => array('newWindow' => '0', 'if' => array('isFalse' => '1'), '_typoScriptNodeValue' => '0'), 'directImageLink' => '1', 'crop' => array('data' => 'file:current:crop'), 'linkParams' => array('ATagParams' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig' => array('no-cookie' => '1', 'api' => '0')), 'config' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'be_layout' => 'OneCol', 'data' => array('uid' => 3120, 'pid' => 161, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 2199, 'tstamp' => 1683028206, 'crdate' => 1634821945, 'cruser_id' => 3, 'editlock' => 0, 'hidden' => 0, 'sorting' => 773, 'CType' => 'list', 'header' => 'Showcase', 'header_position' => '', 'rowDescription' => '', 'bodytext' => null, 'bullets_type' => 0, 'uploads_description' => 0, 'uploads_type' => 0, 'assets' => 0, 'image' => 0, 'imagewidth' => 0, 'imageorient' => 0, 'imagecols' => 1, 'imageborder' => 0, 'media' => 0, 'layout' => 0, 'frame_class' => 'default', 'deleted' => 0, 'cols' => 0, 'space_before_class' => '', 'space_after_class' => '', 'records' => '', 'pages' => '', 'starttime' => 0, 'endtime' => 0, 'colPos' => 273, 'subheader' => 'Card with Image on Top [card-img-top]', 'fe_group' => '', 'header_link' => '', 'image_zoom' => 0, 'header_layout' => '100', 'list_type' => 'showcase_list', 'sectionIndex' => 0, 'linkToTop' => 0, 'file_collections' => '', 'filelink_size' => 0, 'filelink_sorting' => '', 'target' => '', 'date' => 0, 'recursive' => 0, 'imageheight' => 0, 'sys_language_uid' => 0, 'pi_flexform' => '<?xml version="1.0" encoding="utf-8" standalone="yes" ?><T3FlexForms> <data> <sheet index="sDEF"> <language index="lDEF"> <field index="settings.recordsource"> <value index="vDEF">storage</value> </field> <field index="settings.listlayout"> <value index="vDEF">card-img-top</value> </field> <field index="settings.teaserlength"> <value index="vDEF">60</value> </field> <field index="settings.detailmode"> <value index="vDEF">page</value> </field> <field index="settings.columns"> <value index="vDEF">3</value> </field> <field index="settings.gridlayout"> <value index="vDEF">masonry</value> </field> <field index="settings.previewimagemaxwidth"> <value index="vDEF">480</value> </field> <field index="settings.showcategorymenu"> <value index="vDEF">1</value> </field> <field index="settings.recordlist"> <value index="vDEF"></value> </field> <field index="settings.recordstorage"> <value index="vDEF">124</value> </field> <field index="settings.categoryroot"> <value index="vDEF">11</value> </field> <field index="settings.detailpage"> <value index="vDEF">123</value> </field> </language> </sheet> </data></T3FlexForms>', 'accessibility_title' => '', 'accessibility_bypass' => 0, 'accessibility_bypass_text' => '', 'l18n_parent' => 0, 'l18n_diffsource' => 'a:3:{s:6:"colPos";N;s:16:"sys_language_uid";N;s:19:"tx_container_parent";N;}', 'l10n_source' => 0, 'selected_categories' => '', 'category_field' => '', 'table_class' => '', 'table_caption' => null, 'table_delimiter' => 124, 'table_enclosure' => 0, 'table_header_position' => 0, 'table_tfoot' => 0, 'tx_impexp_origuid' => 0, 'l10n_state' => null, 'categories' => 0, 'tx_news_related_news' => 0, 'tx_t3sbootstrap_header_display' => '', 'tx_t3sbootstrap_header_class' => '', 'tx_t3sbootstrap_padding_sides' => '', 'tx_t3sbootstrap_padding_size' => '0', 'tx_t3sbootstrap_margin_sides' => '', 'tx_t3sbootstrap_margin_size' => '0', 'tx_t3sbootstrap_flexbox_columns' => '', 'tx_t3sbootstrap_flexbox_prefix' => '', 'tx_t3sbootstrap_container' => '0', 'tx_t3sbootstrap_extra_class' => '', 'tx_t3sbootstrap_bgcolor' => '', 'tx_t3sbootstrap_contextcolor' => '', 'tx_t3sbootstrap_textcolor' => '', 'tx_t3sbootstrap_flexform' => '<?xml version="1.0" encoding="utf-8" standalone="yes" ?><T3FlexForms> <data> <sheet index="sDEF"> <language index="lDEF"> <field index="hidden"> <value index="vDEF">0</value> </field> <field index="float"> <value index="vDEF">0</value> </field> <field index="border"> <value index="vDEF">0</value> </field> </language> </sheet> </data></T3FlexForms>', 'tx_t3sbootstrap_inTextImgRowWidth' => 'auto', 'tx_t3sbootstrap_bordercolor' => '', 'tx_t3sbootstrap_header_position' => 'above', 'tx_t3sbootstrap_image_ratio' => '', 'tx_t3sbootstrap_header_fontawesome' => '', 'tx_t3sbootstrap_header_celink' => 0, 'tx_slick_pages' => '', 'filelink_sorting_direction' => '', 'tx_t3sbootstrap_header_sectionMenu' => '', 'tx_t3sbootstrap_bgopacity' => '100', 'tx_t3sbootstrap_animateCss' => '0', 'tx_t3sbootstrap_animateCssDuration' => '0', 'tx_t3sbootstrap_animateCssDelay' => '0', 'tx_t3sbootstrap_animateCssRepeat' => 0, 'tx_t3sbootstrap_sectionOrder' => '0', 'tx_container_parent' => 3119, 'image_ratio' => '', 'tx_t3sbootstrap_extra_style' => '', 'tx_t3sbootstrap_image_orig' => '', 'tx_wsslider_items' => 0, 'tx_wsslider_renderer' => null, 'tx_wsslider_layout' => 'Default', 'tx_t3sbootstrap_inTextImgColumns' => 0, 'tx_t3sbootstrap_galleryGutters' => 0, 'currentValue_kidjls9dksoje' => 'OneCol', 'configuid' => 23), 'current' => 'OneCol', 'dataAnimate' => false, 'isAnimateCss' => false, 'animateCssRepeat' => false, 'class' => '', 'header' => array('class' => '', 'hClass' => '', 'hColorVar' => '', 'hLine' => '', 'default' => '2'), 'style' => '', 'isTxContainer' => false, 'codesnippet' => false, 'containerError' => false, 'typoLinkParts' => array('url' => '', 'target' => '', 'class' => '', 'title' => '', 'additionalParams' => '')), 'optional' => false, 'default' => null, 'contentAs' => null, 'debug' => true), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/typo3/typo3temp/var/cache/code/fluid_template/layout_Default_html_09b4b545ecafd393967f6b35212d507773730f39.php line 736
$arguments68['debug'] = true;
$arguments68['section'] = 'Main';
$arguments68['arguments'] = $renderingContext->getVariableProvider()->getAll();

$output35 .= TYPO3\CMS\Fluid\ViewHelpers\RenderViewHelper::renderStatic($arguments68, $renderChildrenClosure69, $renderingContext);

$output35 .= '
   </div>
  ';
at layout_Default_html_09b4b545ecafd393967f6b35212d507773730f39->{closure}()
in /html/typo3/typo3_src-10.4.37/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(array(object(Closure)), array(), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/typo3/typo3_src-10.4.37/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(array('then' => null, 'else' => null, 'condition' => false, '__thenClosure' => object(Closure), '__elseClosures' => array(object(Closure))), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/typo3/typo3temp/var/cache/code/fluid_template/layout_Default_html_09b4b545ecafd393967f6b35212d507773730f39.php line 744
  ';
return $output35;
};

$output19 .= TYPO3Fluid\Fluid\ViewHelpers\IfViewHelper::renderStatic($arguments20, $renderChildrenClosure21, $renderingContext);

$output19 .= '
';
return $output19;
at layout_Default_html_09b4b545ecafd393967f6b35212d507773730f39->{closure}()
in /html/typo3/typo3_src-10.4.37/typo3/sysext/fluid/Classes/ViewHelpers/Link/TypolinkViewHelper.php line 135
        // 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(array('parameter' => null, 'target' => '', 'class' => 'ce-link', 'title' => '', 'language' => null, 'additionalParams' => '', 'additionalAttributes' => array(), 'useCacheHash' => null, 'addQueryString' => false, 'addQueryStringMethod' => 'GET', 'addQueryStringExclude' => '', 'absolute' => false, 'parts-as' => 'typoLinkParts'), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/typo3/typo3temp/var/cache/code/fluid_template/layout_Default_html_09b4b545ecafd393967f6b35212d507773730f39.php line 769
$array18 = array (
);$arguments16['parameter'] = $renderingContext->getVariableProvider()->getByPath('celink', $array18);
$arguments16['class'] = 'ce-link';

$output6 .= TYPO3\CMS\Fluid\ViewHelpers\Link\TypolinkViewHelper::renderStatic($arguments16, $renderChildrenClosure17, $renderingContext);

$output6 .= '
';
// Rendering ViewHelper TYPO3Fluid\Fluid\ViewHelpers\IfViewHelper
at layout_Default_html_09b4b545ecafd393967f6b35212d507773730f39->{closure}()
in /html/typo3/typo3_src-10.4.37/vendor/typo3fluid/fluid/src/ViewHelpers/SpacelessViewHelper.php line 55
     * @return string
     */
    public static function renderStatic(array $arguments, \Closure $childClosure, RenderingContextInterface $renderingContext)
    {
        return trim(preg_replace('/\\>\\s+\\</', '><', $childClosure()));
    }
}
at TYPO3Fluid\Fluid\ViewHelpers\SpacelessViewHelper::renderStatic(array(), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/typo3/typo3temp/var/cache/code/fluid_template/layout_Default_html_09b4b545ecafd393967f6b35212d507773730f39.php line 818
return $output6;
};
$arguments4 = array();

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

$output0 .= '

';
at layout_Default_html_09b4b545ecafd393967f6b35212d507773730f39->render(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/typo3/typo3_src-10.4.37/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 /html/typo3/typo3_src-10.4.37/typo3/sysext/frontend/Classes/ContentObject/FluidTemplateContentObject.php line 358
     * @return string
     */
    protected function renderFluidView()
    {
        return $this->view->render();
    }

    /**
     * Apply standard wrap to content
at TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject->renderFluidView()
in /html/typo3/typo3_src-10.4.37/typo3/sysext/frontend/Classes/ContentObject/FluidTemplateContentObject.php line 108

        $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(array('templateName' => 'List', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:t3sbootstrap/Resources/Private/Templates/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', '', 'EXT:counter/Resources/Private/Templates/', 'EXT:icon_content/Resources/Private/Templates/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', '', 'EXT:counter/Resources/Private/Partials/', 'EXT:icon_content/Resources/Private/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0'))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('focuspoint_test' => 'USER', 'focuspoint_test.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Focuspoint', 'pluginName' => 'Test'), 'rxshariff_shariff' => 'USER', 'rxshariff_shariff.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'RxShariff', 'pluginName' => 'Shariff'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'newsslider_pi1' => 'USER', 'newsslider_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Newsslider', 'pluginName' => 'Pi1'), 'dpcookieconsent_pi1' => 'USER', 'dpcookieconsent_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DpCookieconsent', 'pluginName' => 'Pi1'), 'dpcookieconsent_pi2' => 'USER', 'dpcookieconsent_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DpCookieconsent', 'pluginName' => 'Pi2'), 'fpfractionslider_pi1' => 'USER', 'fpfractionslider_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'FpFractionslider', 'pluginName' => 'Pi1'), 'gomapsext_show' => 'USER', 'gomapsext_show.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'GoMapsExt', 'pluginName' => 'Show'), 'instagram_pi1' => 'USER', 'instagram_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Instagram', 'pluginName' => 'Pi1'), 'maps2_maps2' => 'USER', 'maps2_maps2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Maps2', 'pluginName' => 'Maps2'), 'maps2_searchwithinradius' => 'USER', 'maps2_searchwithinradius.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Maps2', 'pluginName' => 'SearchWithinRadius'), 'maps2_citymap' => 'USER', 'maps2_citymap.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Maps2', 'pluginName' => 'CityMap'), 'showcase_list' => 'USER', 'showcase_list.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Showcase', 'pluginName' => 'List'), 'showcase_slider' => 'USER', 'showcase_slider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Showcase', 'pluginName' => 'Slider'), 'showcase_show' => 'USER', 'showcase_show.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Showcase', 'pluginName' => 'Show'), 'ttaddress_listview' => 'USER', 'ttaddress_listview.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'TtAddress', 'pluginName' => 'ListView'))))
in /html/typo3/typo3_src-10.4.37/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 829
        }

        // 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(object(TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject), array('templateName' => 'List', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:t3sbootstrap/Resources/Private/Templates/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', '', 'EXT:counter/Resources/Private/Templates/', 'EXT:icon_content/Resources/Private/Templates/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', '', 'EXT:counter/Resources/Private/Partials/', 'EXT:icon_content/Resources/Private/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0'))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('focuspoint_test' => 'USER', 'focuspoint_test.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Focuspoint', 'pluginName' => 'Test'), 'rxshariff_shariff' => 'USER', 'rxshariff_shariff.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'RxShariff', 'pluginName' => 'Shariff'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'newsslider_pi1' => 'USER', 'newsslider_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Newsslider', 'pluginName' => 'Pi1'), 'dpcookieconsent_pi1' => 'USER', 'dpcookieconsent_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DpCookieconsent', 'pluginName' => 'Pi1'), 'dpcookieconsent_pi2' => 'USER', 'dpcookieconsent_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DpCookieconsent', 'pluginName' => 'Pi2'), 'fpfractionslider_pi1' => 'USER', 'fpfractionslider_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'FpFractionslider', 'pluginName' => 'Pi1'), 'gomapsext_show' => 'USER', 'gomapsext_show.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'GoMapsExt', 'pluginName' => 'Show'), 'instagram_pi1' => 'USER', 'instagram_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Instagram', 'pluginName' => 'Pi1'), 'maps2_maps2' => 'USER', 'maps2_maps2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Maps2', 'pluginName' => 'Maps2'), 'maps2_searchwithinradius' => 'USER', 'maps2_searchwithinradius.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Maps2', 'pluginName' => 'SearchWithinRadius'), 'maps2_citymap' => 'USER', 'maps2_citymap.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Maps2', 'pluginName' => 'CityMap'), 'showcase_list' => 'USER', 'showcase_list.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Showcase', 'pluginName' => 'List'), 'showcase_slider' => 'USER', 'showcase_slider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Showcase', 'pluginName' => 'Slider'), 'showcase_show' => 'USER', 'showcase_show.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Showcase', 'pluginName' => 'Show'), 'ttaddress_listview' => 'USER', 'ttaddress_listview.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'TtAddress', 'pluginName' => 'ListView'))))
in /html/typo3/typo3_src-10.4.37/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 743
                }
                if (!$hooked) {
                    $contentObject = $this->getContentObject($name);
                    if ($contentObject) {
                        $content .= $this->render($contentObject, $conf);
                    } else {
                        // Call hook functions for extra processing
                        if ($name) {
                            if (!empty($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['cObjTypeAndClassDefault'])) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('FLUIDTEMPLATE', array('templateName' => 'List', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:t3sbootstrap/Resources/Private/Templates/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', '', 'EXT:counter/Resources/Private/Templates/', 'EXT:icon_content/Resources/Private/Templates/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', '', 'EXT:counter/Resources/Private/Partials/', 'EXT:icon_content/Resources/Private/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0'))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('focuspoint_test' => 'USER', 'focuspoint_test.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Focuspoint', 'pluginName' => 'Test'), 'rxshariff_shariff' => 'USER', 'rxshariff_shariff.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'RxShariff', 'pluginName' => 'Shariff'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'newsslider_pi1' => 'USER', 'newsslider_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Newsslider', 'pluginName' => 'Pi1'), 'dpcookieconsent_pi1' => 'USER', 'dpcookieconsent_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DpCookieconsent', 'pluginName' => 'Pi1'), 'dpcookieconsent_pi2' => 'USER', 'dpcookieconsent_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DpCookieconsent', 'pluginName' => 'Pi2'), 'fpfractionslider_pi1' => 'USER', 'fpfractionslider_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'FpFractionslider', 'pluginName' => 'Pi1'), 'gomapsext_show' => 'USER', 'gomapsext_show.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'GoMapsExt', 'pluginName' => 'Show'), 'instagram_pi1' => 'USER', 'instagram_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Instagram', 'pluginName' => 'Pi1'), 'maps2_maps2' => 'USER', 'maps2_maps2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Maps2', 'pluginName' => 'Maps2'), 'maps2_searchwithinradius' => 'USER', 'maps2_searchwithinradius.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Maps2', 'pluginName' => 'SearchWithinRadius'), 'maps2_citymap' => 'USER', 'maps2_citymap.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Maps2', 'pluginName' => 'CityMap'), 'showcase_list' => 'USER', 'showcase_list.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Showcase', 'pluginName' => 'List'), 'showcase_slider' => 'USER', 'showcase_slider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Showcase', 'pluginName' => 'Slider'), 'showcase_show' => 'USER', 'showcase_show.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Showcase', 'pluginName' => 'Show'), 'ttaddress_listview' => 'USER', 'ttaddress_listview.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'TtAddress', 'pluginName' => 'ListView'))), 'lib.contentElement')
in /html/typo3/typo3_src-10.4.37/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 724
                [$name, $conf] = $cF->getVal($key, $this->getTypoScriptFrontendController()->tmpl->setup);
                $conf = array_replace_recursive(is_array($conf) ? $conf : [], $confOverride);
                // Getting the cObject
                $timeTracker->incStackPointer();
                $content .= $this->cObjGetSingle($name, $conf, $key);
                $timeTracker->decStackPointer();
            } else {
                $hooked = false;
                // Application defined cObjects
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('FLUIDTEMPLATE', array('templateName' => 'List', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:t3sbootstrap/Resources/Private/Templates/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', '', 'EXT:counter/Resources/Private/Templates/', 'EXT:icon_content/Resources/Private/Templates/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', '', 'EXT:counter/Resources/Private/Partials/', 'EXT:icon_content/Resources/Private/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0'))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('focuspoint_test' => 'USER', 'focuspoint_test.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Focuspoint', 'pluginName' => 'Test'), 'rxshariff_shariff' => 'USER', 'rxshariff_shariff.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'RxShariff', 'pluginName' => 'Shariff'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'newsslider_pi1' => 'USER', 'newsslider_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Newsslider', 'pluginName' => 'Pi1'), 'dpcookieconsent_pi1' => 'USER', 'dpcookieconsent_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DpCookieconsent', 'pluginName' => 'Pi1'), 'dpcookieconsent_pi2' => 'USER', 'dpcookieconsent_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DpCookieconsent', 'pluginName' => 'Pi2'), 'fpfractionslider_pi1' => 'USER', 'fpfractionslider_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'FpFractionslider', 'pluginName' => 'Pi1'), 'gomapsext_show' => 'USER', 'gomapsext_show.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'GoMapsExt', 'pluginName' => 'Show'), 'instagram_pi1' => 'USER', 'instagram_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Instagram', 'pluginName' => 'Pi1'), 'maps2_maps2' => 'USER', 'maps2_maps2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Maps2', 'pluginName' => 'Maps2'), 'maps2_searchwithinradius' => 'USER', 'maps2_searchwithinradius.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Maps2', 'pluginName' => 'SearchWithinRadius'), 'maps2_citymap' => 'USER', 'maps2_citymap.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Maps2', 'pluginName' => 'CityMap'), 'showcase_list' => 'USER', 'showcase_list.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Showcase', 'pluginName' => 'List'), 'showcase_slider' => 'USER', 'showcase_slider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Showcase', 'pluginName' => 'Slider'), 'showcase_show' => 'USER', 'showcase_show.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Showcase', 'pluginName' => 'Show'), 'ttaddress_listview' => 'USER', 'ttaddress_listview.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'TtAddress', 'pluginName' => 'ListView'))), 'list')
in /html/typo3/typo3_src-10.4.37/typo3/sysext/frontend/Classes/ContentObject/CaseContentObject.php line 47
        // 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(array('key.' => array('field' => 'CType'), 'default' => 'TEXT', 'default.' => array('field' => 'CType', 'htmlSpecialChars' => '1', 'wrap' => '<p style="background-color: yellow; padding: 0.5em 1em;"><strong>ERROR:</strong> Content Element with uid "{field:uid}" and type "|" has no rendering definition!</p>', 'wrap.' => array('insertData' => '1')), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1'))), 'bullets' => '< lib.contentElement', 'bullets.' => array('templateName' => 'Bullets', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('if.' => array('value' => '5', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '20.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '5', 'equals.' => array('field' => 'bullets_type')), 'fieldDelimiter' => '|', 'as' => 'bullets')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext [bullets_type]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.bullets')))), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout|header_link], subheader, date', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.header')))), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2560', 'minimumWidth' => '1', 'ratioWithHeight' => '1', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '23')), 'stdWrap.' => array('editIcons' => 'tt_content : image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.image')))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('focuspoint_test' => 'USER', 'focuspoint_test.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Focuspoint', 'pluginName' => 'Test'), 'rxshariff_shariff' => 'USER', 'rxshariff_shariff.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'RxShariff', 'pluginName' => 'Shariff'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'newsslider_pi1' => 'USER', 'newsslider_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Newsslider', 'pluginName' => 'Pi1'), 'dpcookieconsent_pi1' => 'USER', 'dpcookieconsent_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DpCookieconsent', 'pluginName' => 'Pi1'), 'dpcookieconsent_pi2' => 'USER', 'dpcookieconsent_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DpCookieconsent', 'pluginName' => 'Pi2'), 'fpfractionslider_pi1' => 'USER', 'fpfractionslider_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'FpFractionslider', 'pluginName' => 'Pi1'), 'gomapsext_show' => 'USER', 'gomapsext_show.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'GoMapsExt', 'pluginName' => 'Show'), 'instagram_pi1' => 'USER', 'instagram_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Instagram', 'pluginName' => 'Pi1'), 'maps2_maps2' => 'USER', 'maps2_maps2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Maps2', 'pluginName' => 'Maps2'), 'maps2_searchwithinradius' => 'USER', 'maps2_searchwithinradius.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Maps2', 'pluginName' => 'SearchWithinRadius'), 'maps2_citymap' => 'USER', 'maps2_citymap.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Maps2', 'pluginName' => 'CityMap'), 'showcase_list' => 'USER', 'showcase_list.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Showcase', 'pluginName' => 'List'), 'showcase_slider' => 'USER', 'showcase_slider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Showcase', 'pluginName' => 'Slider'), 'showcase_show' => 'USER', 'showcase_show.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Showcase', 'pluginName' => 'Show'), 'ttaddress_listview' => 'USER', 'ttaddress_listview.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'TtAddress', 'pluginName' => 'ListView'))), 'shortcut' => '< lib.contentElement', 'shortcut.' => array('templateName' => 'Shortcut', 'variables.' => array('shortcuts' => 'RECORDS', 'shortcuts.' => array('source.' => array('field' => 'records'), 'tables' => 'tt_content,tx_news_domain_model_news', 'conf.' => array('tx_news_domain_model_news' => 'USER', 'tx_news_domain_model_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger', 'switchableControllerActions.' => array('News.' => array('detail')), 'settings' => '< plugin.tx_news.settings', 'settings.' => array('singleNews.' => array('field' => 'uid'), 'useStdWrap' => 'singleNews', 'insertRecord' => '1', 'isShortcut' => '1'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], records', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.shortcut'))), '20.' => array('tables' => 'tx_news_domain_model_news', 'conf.' => array('tx_news_domain_model_news' => 'USER', 'tx_news_domain_model_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger', 'switchableControllerActions.' => array('News.' => array('detail')), 'settings' => '< plugin.tx_news.settings', 'settings.' => array('singleNews.' => array('field' => 'uid'), 'useStdWrap' => 'singleNews', 'insertRecord' => '1', 'isShortcut' => '1'))))), 'table' => '< lib.contentElement', 'table.' => array('templateName' => 'Table', 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\CommaSeparatedValueProcessor', '10.' => array('fieldName' => 'bodytext', 'fieldDelimiter.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_delimiter'))), 'fieldEnclosure.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_enclosure')), 'if.' => array('value' => '0', 'equals.' => array('field' => 'table_enclosure'), 'negate' => '1')), 'maximumColumns.' => array('field' => 'cols'), 'as' => 'table')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, [table_caption|cols|table_header_position|table_tfoot]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.table')))), 'text' => '< lib.contentElement', 'text.' => array('templateName' => 'Text', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'textmedia' => '< lib.contentElement', 'textmedia.' => array('templateName' => 'Textmedia', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2560', 'minimumWidth' => '1', 'ratioWithHeight' => '1', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '23')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, assets [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textmedia')))), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'Textpic', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2560', 'minimumWidth' => '1', 'ratioWithHeight' => '1', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '23')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textpic')))), 'uploads' => '< lib.contentElement', 'uploads.' => array('templateName' => 'Uploads', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting', 'direction.' => array('field' => 'filelink_sorting_direction')))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], media, file_collections, filelink_sorting, [filelink_size|uploads_description|uploads_type]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.uploads')))), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_content' => '< lib.contentElement', 'menu_categorized_content.' => array('templateName' => 'MenuCategorizedContent', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tt_content', 'selectFields' => 'tt_content.*', 'groupBy' => 'uid', 'pidInList.' => array('data' => 'leveluid : 0'), 'recursive' => '99', 'join.' => array('data' => 'field:selected_categories', 'wrap' => 'sys_category_record_mm ON uid = sys_category_record_mm.uid_foreign AND sys_category_record_mm.uid_local IN(|)'), 'where.' => array('data' => 'field:category_field', 'wrap' => 'tablenames=\'tt_content\' and fieldname=\'|\''), 'orderBy' => 'tt_content.sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_pages' => '< lib.contentElement', 'menu_categorized_pages.' => array('templateName' => 'MenuCategorizedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'categories', 'special.' => array('value.' => array('field' => 'selected_categories'), 'relation.' => array('field' => 'category_field'), 'sorting' => 'title', 'order' => 'asc'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_pages' => '< lib.contentElement', 'menu_pages.' => array('templateName' => 'MenuPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_subpages' => '< lib.contentElement', 'menu_subpages.' => array('templateName' => 'MenuSubpages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu'))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages'))))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'as' => 'content', 'where' => 'sectionIndex = 1 AND ( colPos = 0 OR colPos > 199 )', 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')))))))), 'menu_section_pages' => '< lib.contentElement', 'menu_section_pages.' => array('templateName' => 'MenuSectionPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'orderBy' => 'sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_recently_updated' => '< lib.contentElement', 'menu_recently_updated.' => array('templateName' => 'MenuRecentlyUpdated', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'updated', 'special.' => array('value.' => array('field' => 'pages'), 'maxAge' => '3600*24*7', 'excludeNoSearchPages' => '1'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_related_pages' => '< lib.contentElement', 'menu_related_pages.' => array('templateName' => 'MenuRelatedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'keywords', 'special.' => array('value.' => array('field' => 'pages'), 'excludeNoSearchPages' => '1'), 'alternativeSortingField' => 'title', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap' => '< lib.contentElement', 'menu_sitemap.' => array('templateName' => 'MenuSitemap', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap_pages' => '< lib.contentElement', 'menu_sitemap_pages.' => array('templateName' => 'MenuSitemapPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'form_formframework' => '< lib.contentElement', 'form_formframework.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Form', 'pluginName' => 'Formframework')), 'felogin_login' => '< lib.contentElement', 'felogin_login.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Felogin', 'pluginName' => 'Login')), 't3sbs_fluidtemplate' => 'COA', 't3sbs_fluidtemplate.' => array('FLUIDTEMPLATE', '10.' => array('file.' => array('stdWrap.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'subheader', 'ifEmpty.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => 'EXT:t3sbootstrap/Resources/Private/Templates/Content/FluidTemplate.html'))))), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'settings.' => array('expandedContent' => '0', 'fontawesome.' => array('pagetitle' => '1'), 'codesnippet' => '0', 'lazyLoad' => '0', 'lazyLoadThreshold' => '0', 'webp' => '0', 'pagebrowser.' => array('enable' => '0'), 'backToTopTitle' => 'to top', 'backToTopClass' => 'fa fa-chevron-circle-up fa-4x text-dark', 'backToTopForAllPages' => '0', 'gtm' => '', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'sectionmenuIcons' => '0', 'navbar.' => array('image.' => array('defaultPath' => '/typo3conf/ext/t3sbootstrap/Resources/Public/Images/bootstrap-logo-white.svg', 'width' => '300', 'height' => '50', 'altText' => 'Company Logo'), 'subdropdown.' => array('twoColumns' => '30'), 'searchboxLink' => '0', 'feUserName' => '0', 'sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400'), 'pages.' => array('override.' => array('smallColumns' => '', 'breakpoint' => '')), 'config.' => array('uid' => '23', 'company' => 'pixelegg', 'homepageUid' => '1', 'pageTitle' => '0', 'pageTitlealign' => 'center', 'pageTitlecontainer' => 'container', 'pageTitleclass' => 'mb-3', 'metaEnable' => 'end', 'metaValue' => '13', 'metaContainer' => 'container', 'metaClass' => '0', 'metaText' => '<a class="p-2" href="tel:+49"><i class="fas fa-phone mr-1"></i> jetzt anrufen </a>', 'navbarEnable' => 'light', 'navbarEntrylevel' => '0', 'navbarLevels' => '4', 'navbarExcludeuiduist' => '0', 'navbarIncludespacer' => '0', 'navbarSectionmenu' => '0', 'navbarMegamenu' => '1', 'navbarHover' => '0', 'navbarClickableparent' => '1', 'navbarPlusicon' => '{$bootstrap.config.navbarPlusicon}', 'navbarDropdownAnimate' => '0', 'navbarBrand' => 'image', 'navbarbrandAlignment' => 'left', 'navbarImage' => '/fileadmin/setup/images/logo/logo.svg', 'navbarColor' => 'white', 'navbarBackground' => '0', 'navbarTransparent' => '0', 'navbarContainer' => '0', 'navbarInnercontainer' => 'container', 'navbarPlacement' => '0', 'navbarAlignment' => 'right', 'navbarClass' => '0', 'navbarToggler' => 'right', 'navbarAnimatedtoggler' => '0', 'navbarBreakpoint' => 'xl', 'navbarOffcanvas' => '1', 'navbarHeight' => '0', 'navbarSearchbox' => '0', 'navbarLangmenu' => '0', 'navbarShrinkcolorschemes' => 'white', 'navbarShrinkcolor' => 'dark', 'navbarRightMenuUidList' => '0', 'navbarExtraRow' => '0', 'navbarLangFlags' => '1', 'jumbotronEnable' => '1', 'jumbotronBgimage' => 'root', 'jumbotronSlide' => '0', 'jumbotronPosition' => 'below', 'jumbotronContainer' => 'none', 'jumbotronContainerposition' => 'Inside', 'jumbotronClass' => 'm-0 p-0', 'jumbotronCarouselInterval' => '500', 'jumbotronCarouselPause' => '', 'breadcrumbEnable' => '0', 'breadcrumbNotonrootpage' => '1', 'breadcrumbFaicon' => '1', 'breadcrumbCorner' => '0', 'breadcrumbBottom' => '0', 'breadcrumbPosition' => 'belowJum', 'breadcrumbContainer' => 'container', 'breadcrumbContainerposition' => 'inside', 'breadcrumbClass' => '0', 'sidebarEnable' => 'Sub', 'sidebarRightenable' => '0', 'sidebarLevels' => '4', 'sidebarEntrylevel' => '1', 'sidebarExcludeuiduist' => '0', 'sidebarIncludespacer' => '0', 'sidebarSectionMobile' => '0', 'footerEnable' => '1', 'footerFluid' => '{$bootstrap.config.footerFluid}', 'footerSlide' => '1', 'footerSticky' => '0', 'footerContainer' => 'container', 'footerContainerposition' => 'Inside', 'footerClass' => 'bg-dark text-white border-top border-dark', 'footerPid' => '6', 'expandedcontentEnabletop' => '0', 'expandedcontentSlidetop' => '0', 'expandedcontentContainerpositiontop' => 'Inside', 'expandedcontentContainertop' => 'none', 'expandedcontentClasstop' => '0', 'expandedcontentEnablebottom' => '1', 'expandedcontentSlidebottom' => '0', 'expandedcontentContainerpositionbottom' => 'Inside', 'expandedcontentContainerbottom' => 'none', 'expandedcontentClassbottom' => '0', 'generalRootline' => '1', 'contentOnlyOnRootpage' => '0', 'jqueryHeader' => '1', 'compress' => '0', 'disablePrefixComment' => '1', 'containerError' => '0', 'slideLeftAside' => '0', 'slideRightAside' => '0', 'pageContentExtraClass' => '0', 'bodyExtraClass' => '0', 'asideExtraClass' => '0', 'mainExtraClass' => '0', 'globalPaddingTop' => '0', 'stickyFooterExtraPadding' => '0', 'contentMarginTop' => '0', 'loadingSpinner' => '0', 'loadingSpinnerColor' => 'primary', 'lightboxSelection' => '2', 'magnifying' => '1', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sectionmenuStickyTop' => '0', 'backgroundImageEnable' => '0', 'backgroundImageSlide' => '0', 'shrinkingNavPadding' => '5', 'sidebarMenuPosition' => 'above', 'langMenuWithFaIcon' => '1', 'subheaderColor' => 'secondary', 'dateFormat' => 'd.m.Y', 'favicon' => '0', 'faLinkIcons' => '1', 'cardFlipperOnClick' => '0', 'lastModifiedContentElement' => '0', 'recentlyUpdatedContentElements' => '0'), 'indexedsearch.' => array('targetPid' => '0')))), 't3sbs_button' => '< lib.contentElement', 't3sbs_button.' => array('templateName' => 'Button', 'stdWrap.' => array('editIcons' => 'tt_content')), 't3sbs_card' => '< lib.contentElement', 't3sbs_card.' => array('templateName' => 'Card', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2560', 'minimumWidth' => '1', 'ratioWithHeight' => '1', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'overrideSmallColumns' => '', 'configuid' => '{$bootstrap.db.uid}'), 'T3SBS\\T3sbootstrap\\DataProcessing\\CardProcessor'), 'stdWrap.' => array('editIcons' => 'tt_content')), 't3sbs_carousel' => '< lib.contentElement', 't3sbs_carousel.' => array('templateName' => 'Carousel', 'settings.' => array('defaultHeaderType' => '3'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets'))), 'stdWrap.' => array('editIcons' => 'tt_content')), 't3sbs_mediaobject' => '< lib.contentElement', 't3sbs_mediaobject.' => array('templateName' => 'Mediaobject', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2560', 'minimumWidth' => '1', 'ratioWithHeight' => '1', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '{$bootstrap.db.uid}')), 'stdWrap.' => array('editIcons' => 'tt_content')), 't3sbs_gallery' => '< lib.contentElement', 't3sbs_gallery.' => array('templateName' => 'ImageGallery', 'settings.' => array('defaultHeaderType' => '2'), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\BsImageGalleryProcessor', '10.' => array('references.' => array('fieldName' => 'assets'), 'as' => 'files', 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2560', 'minimumWidth' => '1', 'ratioWithHeight' => '1', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '{$bootstrap.db.uid}')), 'stdWrap.' => array('editIcons' => 'tt_content')), 't3sbs_toast' => '< lib.contentElement', 't3sbs_toast.' => array('templateName' => 'Toast', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2560', 'minimumWidth' => '1', 'ratioWithHeight' => '1', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '{$bootstrap.db.uid}')), 'stdWrap.' => array('editIcons' => 'tt_content')), 'two_columns' => 'FLUIDTEMPLATE', 'two_columns.' => array('templateName' => 'TwoColumns', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '221.' => array('colPos' => '221', 'as' => 'col_221'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '222.' => array('colPos' => '222', 'as' => 'col_222'))), 'three_columns' => 'FLUIDTEMPLATE', 'three_columns.' => array('templateName' => 'ThreeColumns', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '231.' => array('colPos' => '231', 'as' => 'col_231'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '232.' => array('colPos' => '232', 'as' => 'col_232'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '233.' => array('colPos' => '233', 'as' => 'col_233'))), 'four_columns' => 'FLUIDTEMPLATE', 'four_columns.' => array('templateName' => 'FourColumns', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '241.' => array('colPos' => '241', 'as' => 'col_241'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '242.' => array('colPos' => '242', 'as' => 'col_242'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '243.' => array('colPos' => '243', 'as' => 'col_243'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '244.' => array('colPos' => '244', 'as' => 'col_244'))), 'six_columns' => 'FLUIDTEMPLATE', 'six_columns.' => array('templateName' => 'SixColumns', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '241.' => array('colPos' => '261', 'as' => 'col_261'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '242.' => array('colPos' => '262', 'as' => 'col_262'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '243.' => array('colPos' => '263', 'as' => 'col_263'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '244.' => array('colPos' => '264', 'as' => 'col_264'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '245.' => array('colPos' => '265', 'as' => 'col_265'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '246.' => array('colPos' => '266', 'as' => 'col_266'))), 'card_wrapper' => 'FLUIDTEMPLATE', 'card_wrapper.' => array('templateName' => 'CardWrapper', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '270.' => array('colPos' => '270', 'as' => 'col_270'))), 'button_group' => 'FLUIDTEMPLATE', 'button_group.' => array('templateName' => 'Buttongroup', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '271.' => array('colPos' => '271', 'as' => 'col_271'))), 'background_wrapper' => 'FLUIDTEMPLATE', 'background_wrapper.' => array('templateName' => 'BackgroundWrapper', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '273.' => array('colPos' => '273', 'as' => 'col_273'))), 'parallax_wrapper' => 'FLUIDTEMPLATE', 'parallax_wrapper.' => array('templateName' => 'ParallaxWrapper', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '274.' => array('colPos' => '274', 'as' => 'col_274'))), 'autoLayout_row' => 'FLUIDTEMPLATE', 'autoLayout_row.' => array('templateName' => 'AutoLayoutRow', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '272.' => array('colPos' => '272', 'as' => 'col_272'))), 'container' => 'FLUIDTEMPLATE', 'container.' => array('templateName' => 'Container', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '275.' => array('colPos' => '275', 'as' => 'col_275'))), 'carousel_container' => 'FLUIDTEMPLATE', 'carousel_container.' => array('templateName' => 'CarouselContainer', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '276.' => array('colPos' => '276', 'as' => 'col_276'))), 'collapsible_container' => 'FLUIDTEMPLATE', 'collapsible_container.' => array('templateName' => 'CollapsibleContainer', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '277.' => array('colPos' => '277', 'as' => 'col_277'))), 'collapsible_accordion' => 'FLUIDTEMPLATE', 'collapsible_accordion.' => array('templateName' => 'Collapsible', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '278.' => array('colPos' => '278', 'as' => 'col_278'))), 'modal' => 'FLUIDTEMPLATE', 'modal.' => array('templateName' => 'Modal', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '279.' => array('colPos' => '279', 'as' => 'col_279'))), 'tabs_container' => 'FLUIDTEMPLATE', 'tabs_container.' => array('templateName' => 'TabContainer', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '280.' => array('colPos' => '280', 'as' => 'col_280'))), 'tabs_tab' => 'FLUIDTEMPLATE', 'tabs_tab.' => array('templateName' => 'Tab', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '281.' => array('colPos' => '281', 'as' => 'col_281'))), 'listGroup_wrapper' => 'FLUIDTEMPLATE', 'listGroup_wrapper.' => array('templateName' => 'ListGroupWrapper', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '282.' => array('colPos' => '282', 'as' => 'col_282'))), 'masonry_wrapper' => 'FLUIDTEMPLATE', 'masonry_wrapper.' => array('templateName' => 'MasonryWrapper', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '283.' => array('colPos' => '283', 'as' => 'col_283'))), 'swiper_container' => 'FLUIDTEMPLATE', 'swiper_container.' => array('templateName' => 'SwiperContainer', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '300.' => array('colPos' => '300', 'as' => 'col_300'))), 'toast_container' => 'FLUIDTEMPLATE', 'toast_container.' => array('templateName' => 'ToastContainer', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '310.' => array('colPos' => '310', 'as' => 'col_310'))), 'counter_counter' => '< lib.contentElement', 'counter_counter.' => array('templateName' => 'Counter', 'settings.' => array('counter.' => array('start' => '0', 'end' => '100', 'duration' => '5000', 'delay' => '0', 'lazyStart' => '1', 'startEffect' => 'none', 'startEffectDuration' => '500', 'easing' => 'linear', 'title' => '', 'description' => ''))), 'iconcontent_iconcontent' => '< lib.contentElement', 'iconcontent_iconcontent.' => array('templateName' => 'IconContent', 'settings.' => array('iconcontent.' => array('icon' => '', 'link' => '', 'size' => '', 'color' => '', 'animation' => '', 'rotate' => '')))))
in /html/typo3/typo3_src-10.4.37/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 829
        }

        // 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(object(TYPO3\CMS\Frontend\ContentObject\CaseContentObject), array('key.' => array('field' => 'CType'), 'default' => 'TEXT', 'default.' => array('field' => 'CType', 'htmlSpecialChars' => '1', 'wrap' => '<p style="background-color: yellow; padding: 0.5em 1em;"><strong>ERROR:</strong> Content Element with uid "{field:uid}" and type "|" has no rendering definition!</p>', 'wrap.' => array('insertData' => '1')), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1'))), 'bullets' => '< lib.contentElement', 'bullets.' => array('templateName' => 'Bullets', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('if.' => array('value' => '5', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '20.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '5', 'equals.' => array('field' => 'bullets_type')), 'fieldDelimiter' => '|', 'as' => 'bullets')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext [bullets_type]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.bullets')))), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout|header_link], subheader, date', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.header')))), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2560', 'minimumWidth' => '1', 'ratioWithHeight' => '1', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '23')), 'stdWrap.' => array('editIcons' => 'tt_content : image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.image')))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('focuspoint_test' => 'USER', 'focuspoint_test.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Focuspoint', 'pluginName' => 'Test'), 'rxshariff_shariff' => 'USER', 'rxshariff_shariff.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'RxShariff', 'pluginName' => 'Shariff'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'newsslider_pi1' => 'USER', 'newsslider_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Newsslider', 'pluginName' => 'Pi1'), 'dpcookieconsent_pi1' => 'USER', 'dpcookieconsent_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DpCookieconsent', 'pluginName' => 'Pi1'), 'dpcookieconsent_pi2' => 'USER', 'dpcookieconsent_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DpCookieconsent', 'pluginName' => 'Pi2'), 'fpfractionslider_pi1' => 'USER', 'fpfractionslider_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'FpFractionslider', 'pluginName' => 'Pi1'), 'gomapsext_show' => 'USER', 'gomapsext_show.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'GoMapsExt', 'pluginName' => 'Show'), 'instagram_pi1' => 'USER', 'instagram_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Instagram', 'pluginName' => 'Pi1'), 'maps2_maps2' => 'USER', 'maps2_maps2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Maps2', 'pluginName' => 'Maps2'), 'maps2_searchwithinradius' => 'USER', 'maps2_searchwithinradius.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Maps2', 'pluginName' => 'SearchWithinRadius'), 'maps2_citymap' => 'USER', 'maps2_citymap.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Maps2', 'pluginName' => 'CityMap'), 'showcase_list' => 'USER', 'showcase_list.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Showcase', 'pluginName' => 'List'), 'showcase_slider' => 'USER', 'showcase_slider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Showcase', 'pluginName' => 'Slider'), 'showcase_show' => 'USER', 'showcase_show.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Showcase', 'pluginName' => 'Show'), 'ttaddress_listview' => 'USER', 'ttaddress_listview.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'TtAddress', 'pluginName' => 'ListView'))), 'shortcut' => '< lib.contentElement', 'shortcut.' => array('templateName' => 'Shortcut', 'variables.' => array('shortcuts' => 'RECORDS', 'shortcuts.' => array('source.' => array('field' => 'records'), 'tables' => 'tt_content,tx_news_domain_model_news', 'conf.' => array('tx_news_domain_model_news' => 'USER', 'tx_news_domain_model_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger', 'switchableControllerActions.' => array('News.' => array('detail')), 'settings' => '< plugin.tx_news.settings', 'settings.' => array('singleNews.' => array('field' => 'uid'), 'useStdWrap' => 'singleNews', 'insertRecord' => '1', 'isShortcut' => '1'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], records', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.shortcut'))), '20.' => array('tables' => 'tx_news_domain_model_news', 'conf.' => array('tx_news_domain_model_news' => 'USER', 'tx_news_domain_model_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger', 'switchableControllerActions.' => array('News.' => array('detail')), 'settings' => '< plugin.tx_news.settings', 'settings.' => array('singleNews.' => array('field' => 'uid'), 'useStdWrap' => 'singleNews', 'insertRecord' => '1', 'isShortcut' => '1'))))), 'table' => '< lib.contentElement', 'table.' => array('templateName' => 'Table', 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\CommaSeparatedValueProcessor', '10.' => array('fieldName' => 'bodytext', 'fieldDelimiter.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_delimiter'))), 'fieldEnclosure.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_enclosure')), 'if.' => array('value' => '0', 'equals.' => array('field' => 'table_enclosure'), 'negate' => '1')), 'maximumColumns.' => array('field' => 'cols'), 'as' => 'table')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, [table_caption|cols|table_header_position|table_tfoot]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.table')))), 'text' => '< lib.contentElement', 'text.' => array('templateName' => 'Text', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'textmedia' => '< lib.contentElement', 'textmedia.' => array('templateName' => 'Textmedia', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2560', 'minimumWidth' => '1', 'ratioWithHeight' => '1', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '23')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, assets [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textmedia')))), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'Textpic', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2560', 'minimumWidth' => '1', 'ratioWithHeight' => '1', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '23')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textpic')))), 'uploads' => '< lib.contentElement', 'uploads.' => array('templateName' => 'Uploads', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting', 'direction.' => array('field' => 'filelink_sorting_direction')))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], media, file_collections, filelink_sorting, [filelink_size|uploads_description|uploads_type]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.uploads')))), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_content' => '< lib.contentElement', 'menu_categorized_content.' => array('templateName' => 'MenuCategorizedContent', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tt_content', 'selectFields' => 'tt_content.*', 'groupBy' => 'uid', 'pidInList.' => array('data' => 'leveluid : 0'), 'recursive' => '99', 'join.' => array('data' => 'field:selected_categories', 'wrap' => 'sys_category_record_mm ON uid = sys_category_record_mm.uid_foreign AND sys_category_record_mm.uid_local IN(|)'), 'where.' => array('data' => 'field:category_field', 'wrap' => 'tablenames=\'tt_content\' and fieldname=\'|\''), 'orderBy' => 'tt_content.sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_pages' => '< lib.contentElement', 'menu_categorized_pages.' => array('templateName' => 'MenuCategorizedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'categories', 'special.' => array('value.' => array('field' => 'selected_categories'), 'relation.' => array('field' => 'category_field'), 'sorting' => 'title', 'order' => 'asc'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_pages' => '< lib.contentElement', 'menu_pages.' => array('templateName' => 'MenuPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_subpages' => '< lib.contentElement', 'menu_subpages.' => array('templateName' => 'MenuSubpages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu'))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages'))))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'as' => 'content', 'where' => 'sectionIndex = 1 AND ( colPos = 0 OR colPos > 199 )', 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')))))))), 'menu_section_pages' => '< lib.contentElement', 'menu_section_pages.' => array('templateName' => 'MenuSectionPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'orderBy' => 'sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_recently_updated' => '< lib.contentElement', 'menu_recently_updated.' => array('templateName' => 'MenuRecentlyUpdated', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'updated', 'special.' => array('value.' => array('field' => 'pages'), 'maxAge' => '3600*24*7', 'excludeNoSearchPages' => '1'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_related_pages' => '< lib.contentElement', 'menu_related_pages.' => array('templateName' => 'MenuRelatedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'keywords', 'special.' => array('value.' => array('field' => 'pages'), 'excludeNoSearchPages' => '1'), 'alternativeSortingField' => 'title', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap' => '< lib.contentElement', 'menu_sitemap.' => array('templateName' => 'MenuSitemap', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap_pages' => '< lib.contentElement', 'menu_sitemap_pages.' => array('templateName' => 'MenuSitemapPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'form_formframework' => '< lib.contentElement', 'form_formframework.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Form', 'pluginName' => 'Formframework')), 'felogin_login' => '< lib.contentElement', 'felogin_login.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Felogin', 'pluginName' => 'Login')), 't3sbs_fluidtemplate' => 'COA', 't3sbs_fluidtemplate.' => array('FLUIDTEMPLATE', '10.' => array('file.' => array('stdWrap.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'subheader', 'ifEmpty.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => 'EXT:t3sbootstrap/Resources/Private/Templates/Content/FluidTemplate.html'))))), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'settings.' => array('expandedContent' => '0', 'fontawesome.' => array('pagetitle' => '1'), 'codesnippet' => '0', 'lazyLoad' => '0', 'lazyLoadThreshold' => '0', 'webp' => '0', 'pagebrowser.' => array('enable' => '0'), 'backToTopTitle' => 'to top', 'backToTopClass' => 'fa fa-chevron-circle-up fa-4x text-dark', 'backToTopForAllPages' => '0', 'gtm' => '', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'sectionmenuIcons' => '0', 'navbar.' => array('image.' => array('defaultPath' => '/typo3conf/ext/t3sbootstrap/Resources/Public/Images/bootstrap-logo-white.svg', 'width' => '300', 'height' => '50', 'altText' => 'Company Logo'), 'subdropdown.' => array('twoColumns' => '30'), 'searchboxLink' => '0', 'feUserName' => '0', 'sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400'), 'pages.' => array('override.' => array('smallColumns' => '', 'breakpoint' => '')), 'config.' => array('uid' => '23', 'company' => 'pixelegg', 'homepageUid' => '1', 'pageTitle' => '0', 'pageTitlealign' => 'center', 'pageTitlecontainer' => 'container', 'pageTitleclass' => 'mb-3', 'metaEnable' => 'end', 'metaValue' => '13', 'metaContainer' => 'container', 'metaClass' => '0', 'metaText' => '<a class="p-2" href="tel:+49"><i class="fas fa-phone mr-1"></i> jetzt anrufen </a>', 'navbarEnable' => 'light', 'navbarEntrylevel' => '0', 'navbarLevels' => '4', 'navbarExcludeuiduist' => '0', 'navbarIncludespacer' => '0', 'navbarSectionmenu' => '0', 'navbarMegamenu' => '1', 'navbarHover' => '0', 'navbarClickableparent' => '1', 'navbarPlusicon' => '{$bootstrap.config.navbarPlusicon}', 'navbarDropdownAnimate' => '0', 'navbarBrand' => 'image', 'navbarbrandAlignment' => 'left', 'navbarImage' => '/fileadmin/setup/images/logo/logo.svg', 'navbarColor' => 'white', 'navbarBackground' => '0', 'navbarTransparent' => '0', 'navbarContainer' => '0', 'navbarInnercontainer' => 'container', 'navbarPlacement' => '0', 'navbarAlignment' => 'right', 'navbarClass' => '0', 'navbarToggler' => 'right', 'navbarAnimatedtoggler' => '0', 'navbarBreakpoint' => 'xl', 'navbarOffcanvas' => '1', 'navbarHeight' => '0', 'navbarSearchbox' => '0', 'navbarLangmenu' => '0', 'navbarShrinkcolorschemes' => 'white', 'navbarShrinkcolor' => 'dark', 'navbarRightMenuUidList' => '0', 'navbarExtraRow' => '0', 'navbarLangFlags' => '1', 'jumbotronEnable' => '1', 'jumbotronBgimage' => 'root', 'jumbotronSlide' => '0', 'jumbotronPosition' => 'below', 'jumbotronContainer' => 'none', 'jumbotronContainerposition' => 'Inside', 'jumbotronClass' => 'm-0 p-0', 'jumbotronCarouselInterval' => '500', 'jumbotronCarouselPause' => '', 'breadcrumbEnable' => '0', 'breadcrumbNotonrootpage' => '1', 'breadcrumbFaicon' => '1', 'breadcrumbCorner' => '0', 'breadcrumbBottom' => '0', 'breadcrumbPosition' => 'belowJum', 'breadcrumbContainer' => 'container', 'breadcrumbContainerposition' => 'inside', 'breadcrumbClass' => '0', 'sidebarEnable' => 'Sub', 'sidebarRightenable' => '0', 'sidebarLevels' => '4', 'sidebarEntrylevel' => '1', 'sidebarExcludeuiduist' => '0', 'sidebarIncludespacer' => '0', 'sidebarSectionMobile' => '0', 'footerEnable' => '1', 'footerFluid' => '{$bootstrap.config.footerFluid}', 'footerSlide' => '1', 'footerSticky' => '0', 'footerContainer' => 'container', 'footerContainerposition' => 'Inside', 'footerClass' => 'bg-dark text-white border-top border-dark', 'footerPid' => '6', 'expandedcontentEnabletop' => '0', 'expandedcontentSlidetop' => '0', 'expandedcontentContainerpositiontop' => 'Inside', 'expandedcontentContainertop' => 'none', 'expandedcontentClasstop' => '0', 'expandedcontentEnablebottom' => '1', 'expandedcontentSlidebottom' => '0', 'expandedcontentContainerpositionbottom' => 'Inside', 'expandedcontentContainerbottom' => 'none', 'expandedcontentClassbottom' => '0', 'generalRootline' => '1', 'contentOnlyOnRootpage' => '0', 'jqueryHeader' => '1', 'compress' => '0', 'disablePrefixComment' => '1', 'containerError' => '0', 'slideLeftAside' => '0', 'slideRightAside' => '0', 'pageContentExtraClass' => '0', 'bodyExtraClass' => '0', 'asideExtraClass' => '0', 'mainExtraClass' => '0', 'globalPaddingTop' => '0', 'stickyFooterExtraPadding' => '0', 'contentMarginTop' => '0', 'loadingSpinner' => '0', 'loadingSpinnerColor' => 'primary', 'lightboxSelection' => '2', 'magnifying' => '1', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sectionmenuStickyTop' => '0', 'backgroundImageEnable' => '0', 'backgroundImageSlide' => '0', 'shrinkingNavPadding' => '5', 'sidebarMenuPosition' => 'above', 'langMenuWithFaIcon' => '1', 'subheaderColor' => 'secondary', 'dateFormat' => 'd.m.Y', 'favicon' => '0', 'faLinkIcons' => '1', 'cardFlipperOnClick' => '0', 'lastModifiedContentElement' => '0', 'recentlyUpdatedContentElements' => '0'), 'indexedsearch.' => array('targetPid' => '0')))), 't3sbs_button' => '< lib.contentElement', 't3sbs_button.' => array('templateName' => 'Button', 'stdWrap.' => array('editIcons' => 'tt_content')), 't3sbs_card' => '< lib.contentElement', 't3sbs_card.' => array('templateName' => 'Card', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2560', 'minimumWidth' => '1', 'ratioWithHeight' => '1', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'overrideSmallColumns' => '', 'configuid' => '{$bootstrap.db.uid}'), 'T3SBS\\T3sbootstrap\\DataProcessing\\CardProcessor'), 'stdWrap.' => array('editIcons' => 'tt_content')), 't3sbs_carousel' => '< lib.contentElement', 't3sbs_carousel.' => array('templateName' => 'Carousel', 'settings.' => array('defaultHeaderType' => '3'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets'))), 'stdWrap.' => array('editIcons' => 'tt_content')), 't3sbs_mediaobject' => '< lib.contentElement', 't3sbs_mediaobject.' => array('templateName' => 'Mediaobject', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2560', 'minimumWidth' => '1', 'ratioWithHeight' => '1', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '{$bootstrap.db.uid}')), 'stdWrap.' => array('editIcons' => 'tt_content')), 't3sbs_gallery' => '< lib.contentElement', 't3sbs_gallery.' => array('templateName' => 'ImageGallery', 'settings.' => array('defaultHeaderType' => '2'), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\BsImageGalleryProcessor', '10.' => array('references.' => array('fieldName' => 'assets'), 'as' => 'files', 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2560', 'minimumWidth' => '1', 'ratioWithHeight' => '1', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '{$bootstrap.db.uid}')), 'stdWrap.' => array('editIcons' => 'tt_content')), 't3sbs_toast' => '< lib.contentElement', 't3sbs_toast.' => array('templateName' => 'Toast', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2560', 'minimumWidth' => '1', 'ratioWithHeight' => '1', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '{$bootstrap.db.uid}')), 'stdWrap.' => array('editIcons' => 'tt_content')), 'two_columns' => 'FLUIDTEMPLATE', 'two_columns.' => array('templateName' => 'TwoColumns', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '221.' => array('colPos' => '221', 'as' => 'col_221'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '222.' => array('colPos' => '222', 'as' => 'col_222'))), 'three_columns' => 'FLUIDTEMPLATE', 'three_columns.' => array('templateName' => 'ThreeColumns', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '231.' => array('colPos' => '231', 'as' => 'col_231'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '232.' => array('colPos' => '232', 'as' => 'col_232'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '233.' => array('colPos' => '233', 'as' => 'col_233'))), 'four_columns' => 'FLUIDTEMPLATE', 'four_columns.' => array('templateName' => 'FourColumns', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '241.' => array('colPos' => '241', 'as' => 'col_241'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '242.' => array('colPos' => '242', 'as' => 'col_242'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '243.' => array('colPos' => '243', 'as' => 'col_243'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '244.' => array('colPos' => '244', 'as' => 'col_244'))), 'six_columns' => 'FLUIDTEMPLATE', 'six_columns.' => array('templateName' => 'SixColumns', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '241.' => array('colPos' => '261', 'as' => 'col_261'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '242.' => array('colPos' => '262', 'as' => 'col_262'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '243.' => array('colPos' => '263', 'as' => 'col_263'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '244.' => array('colPos' => '264', 'as' => 'col_264'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '245.' => array('colPos' => '265', 'as' => 'col_265'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '246.' => array('colPos' => '266', 'as' => 'col_266'))), 'card_wrapper' => 'FLUIDTEMPLATE', 'card_wrapper.' => array('templateName' => 'CardWrapper', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '270.' => array('colPos' => '270', 'as' => 'col_270'))), 'button_group' => 'FLUIDTEMPLATE', 'button_group.' => array('templateName' => 'Buttongroup', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '271.' => array('colPos' => '271', 'as' => 'col_271'))), 'background_wrapper' => 'FLUIDTEMPLATE', 'background_wrapper.' => array('templateName' => 'BackgroundWrapper', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '273.' => array('colPos' => '273', 'as' => 'col_273'))), 'parallax_wrapper' => 'FLUIDTEMPLATE', 'parallax_wrapper.' => array('templateName' => 'ParallaxWrapper', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '274.' => array('colPos' => '274', 'as' => 'col_274'))), 'autoLayout_row' => 'FLUIDTEMPLATE', 'autoLayout_row.' => array('templateName' => 'AutoLayoutRow', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '272.' => array('colPos' => '272', 'as' => 'col_272'))), 'container' => 'FLUIDTEMPLATE', 'container.' => array('templateName' => 'Container', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '275.' => array('colPos' => '275', 'as' => 'col_275'))), 'carousel_container' => 'FLUIDTEMPLATE', 'carousel_container.' => array('templateName' => 'CarouselContainer', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '276.' => array('colPos' => '276', 'as' => 'col_276'))), 'collapsible_container' => 'FLUIDTEMPLATE', 'collapsible_container.' => array('templateName' => 'CollapsibleContainer', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '277.' => array('colPos' => '277', 'as' => 'col_277'))), 'collapsible_accordion' => 'FLUIDTEMPLATE', 'collapsible_accordion.' => array('templateName' => 'Collapsible', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '278.' => array('colPos' => '278', 'as' => 'col_278'))), 'modal' => 'FLUIDTEMPLATE', 'modal.' => array('templateName' => 'Modal', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '279.' => array('colPos' => '279', 'as' => 'col_279'))), 'tabs_container' => 'FLUIDTEMPLATE', 'tabs_container.' => array('templateName' => 'TabContainer', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '280.' => array('colPos' => '280', 'as' => 'col_280'))), 'tabs_tab' => 'FLUIDTEMPLATE', 'tabs_tab.' => array('templateName' => 'Tab', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '281.' => array('colPos' => '281', 'as' => 'col_281'))), 'listGroup_wrapper' => 'FLUIDTEMPLATE', 'listGroup_wrapper.' => array('templateName' => 'ListGroupWrapper', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '282.' => array('colPos' => '282', 'as' => 'col_282'))), 'masonry_wrapper' => 'FLUIDTEMPLATE', 'masonry_wrapper.' => array('templateName' => 'MasonryWrapper', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '283.' => array('colPos' => '283', 'as' => 'col_283'))), 'swiper_container' => 'FLUIDTEMPLATE', 'swiper_container.' => array('templateName' => 'SwiperContainer', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '300.' => array('colPos' => '300', 'as' => 'col_300'))), 'toast_container' => 'FLUIDTEMPLATE', 'toast_container.' => array('templateName' => 'ToastContainer', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '310.' => array('colPos' => '310', 'as' => 'col_310'))), 'counter_counter' => '< lib.contentElement', 'counter_counter.' => array('templateName' => 'Counter', 'settings.' => array('counter.' => array('start' => '0', 'end' => '100', 'duration' => '5000', 'delay' => '0', 'lazyStart' => '1', 'startEffect' => 'none', 'startEffectDuration' => '500', 'easing' => 'linear', 'title' => '', 'description' => ''))), 'iconcontent_iconcontent' => '< lib.contentElement', 'iconcontent_iconcontent.' => array('templateName' => 'IconContent', 'settings.' => array('iconcontent.' => array('icon' => '', 'link' => '', 'size' => '', 'color' => '', 'animation' => '', 'rotate' => '')))))
in /html/typo3/typo3_src-10.4.37/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 743
                }
                if (!$hooked) {
                    $contentObject = $this->getContentObject($name);
                    if ($contentObject) {
                        $content .= $this->render($contentObject, $conf);
                    } else {
                        // Call hook functions for extra processing
                        if ($name) {
                            if (!empty($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['cObjTypeAndClassDefault'])) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('CASE', array('key.' => array('field' => 'CType'), 'default' => 'TEXT', 'default.' => array('field' => 'CType', 'htmlSpecialChars' => '1', 'wrap' => '<p style="background-color: yellow; padding: 0.5em 1em;"><strong>ERROR:</strong> Content Element with uid "{field:uid}" and type "|" has no rendering definition!</p>', 'wrap.' => array('insertData' => '1')), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1'))), 'bullets' => '< lib.contentElement', 'bullets.' => array('templateName' => 'Bullets', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('if.' => array('value' => '5', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '20.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '5', 'equals.' => array('field' => 'bullets_type')), 'fieldDelimiter' => '|', 'as' => 'bullets')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext [bullets_type]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.bullets')))), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout|header_link], subheader, date', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.header')))), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2560', 'minimumWidth' => '1', 'ratioWithHeight' => '1', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '23')), 'stdWrap.' => array('editIcons' => 'tt_content : image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.image')))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('focuspoint_test' => 'USER', 'focuspoint_test.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Focuspoint', 'pluginName' => 'Test'), 'rxshariff_shariff' => 'USER', 'rxshariff_shariff.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'RxShariff', 'pluginName' => 'Shariff'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'newsslider_pi1' => 'USER', 'newsslider_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Newsslider', 'pluginName' => 'Pi1'), 'dpcookieconsent_pi1' => 'USER', 'dpcookieconsent_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DpCookieconsent', 'pluginName' => 'Pi1'), 'dpcookieconsent_pi2' => 'USER', 'dpcookieconsent_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DpCookieconsent', 'pluginName' => 'Pi2'), 'fpfractionslider_pi1' => 'USER', 'fpfractionslider_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'FpFractionslider', 'pluginName' => 'Pi1'), 'gomapsext_show' => 'USER', 'gomapsext_show.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'GoMapsExt', 'pluginName' => 'Show'), 'instagram_pi1' => 'USER', 'instagram_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Instagram', 'pluginName' => 'Pi1'), 'maps2_maps2' => 'USER', 'maps2_maps2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Maps2', 'pluginName' => 'Maps2'), 'maps2_searchwithinradius' => 'USER', 'maps2_searchwithinradius.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Maps2', 'pluginName' => 'SearchWithinRadius'), 'maps2_citymap' => 'USER', 'maps2_citymap.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Maps2', 'pluginName' => 'CityMap'), 'showcase_list' => 'USER', 'showcase_list.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Showcase', 'pluginName' => 'List'), 'showcase_slider' => 'USER', 'showcase_slider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Showcase', 'pluginName' => 'Slider'), 'showcase_show' => 'USER', 'showcase_show.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Showcase', 'pluginName' => 'Show'), 'ttaddress_listview' => 'USER', 'ttaddress_listview.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'TtAddress', 'pluginName' => 'ListView'))), 'shortcut' => '< lib.contentElement', 'shortcut.' => array('templateName' => 'Shortcut', 'variables.' => array('shortcuts' => 'RECORDS', 'shortcuts.' => array('source.' => array('field' => 'records'), 'tables' => 'tt_content,tx_news_domain_model_news', 'conf.' => array('tx_news_domain_model_news' => 'USER', 'tx_news_domain_model_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger', 'switchableControllerActions.' => array('News.' => array('detail')), 'settings' => '< plugin.tx_news.settings', 'settings.' => array('singleNews.' => array('field' => 'uid'), 'useStdWrap' => 'singleNews', 'insertRecord' => '1', 'isShortcut' => '1'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], records', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.shortcut'))), '20.' => array('tables' => 'tx_news_domain_model_news', 'conf.' => array('tx_news_domain_model_news' => 'USER', 'tx_news_domain_model_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger', 'switchableControllerActions.' => array('News.' => array('detail')), 'settings' => '< plugin.tx_news.settings', 'settings.' => array('singleNews.' => array('field' => 'uid'), 'useStdWrap' => 'singleNews', 'insertRecord' => '1', 'isShortcut' => '1'))))), 'table' => '< lib.contentElement', 'table.' => array('templateName' => 'Table', 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\CommaSeparatedValueProcessor', '10.' => array('fieldName' => 'bodytext', 'fieldDelimiter.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_delimiter'))), 'fieldEnclosure.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_enclosure')), 'if.' => array('value' => '0', 'equals.' => array('field' => 'table_enclosure'), 'negate' => '1')), 'maximumColumns.' => array('field' => 'cols'), 'as' => 'table')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, [table_caption|cols|table_header_position|table_tfoot]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.table')))), 'text' => '< lib.contentElement', 'text.' => array('templateName' => 'Text', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'textmedia' => '< lib.contentElement', 'textmedia.' => array('templateName' => 'Textmedia', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2560', 'minimumWidth' => '1', 'ratioWithHeight' => '1', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '23')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, assets [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textmedia')))), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'Textpic', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2560', 'minimumWidth' => '1', 'ratioWithHeight' => '1', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '23')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textpic')))), 'uploads' => '< lib.contentElement', 'uploads.' => array('templateName' => 'Uploads', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting', 'direction.' => array('field' => 'filelink_sorting_direction')))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], media, file_collections, filelink_sorting, [filelink_size|uploads_description|uploads_type]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.uploads')))), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_content' => '< lib.contentElement', 'menu_categorized_content.' => array('templateName' => 'MenuCategorizedContent', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tt_content', 'selectFields' => 'tt_content.*', 'groupBy' => 'uid', 'pidInList.' => array('data' => 'leveluid : 0'), 'recursive' => '99', 'join.' => array('data' => 'field:selected_categories', 'wrap' => 'sys_category_record_mm ON uid = sys_category_record_mm.uid_foreign AND sys_category_record_mm.uid_local IN(|)'), 'where.' => array('data' => 'field:category_field', 'wrap' => 'tablenames=\'tt_content\' and fieldname=\'|\''), 'orderBy' => 'tt_content.sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_pages' => '< lib.contentElement', 'menu_categorized_pages.' => array('templateName' => 'MenuCategorizedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'categories', 'special.' => array('value.' => array('field' => 'selected_categories'), 'relation.' => array('field' => 'category_field'), 'sorting' => 'title', 'order' => 'asc'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_pages' => '< lib.contentElement', 'menu_pages.' => array('templateName' => 'MenuPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_subpages' => '< lib.contentElement', 'menu_subpages.' => array('templateName' => 'MenuSubpages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu'))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages'))))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'as' => 'content', 'where' => 'sectionIndex = 1 AND ( colPos = 0 OR colPos > 199 )', 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')))))))), 'menu_section_pages' => '< lib.contentElement', 'menu_section_pages.' => array('templateName' => 'MenuSectionPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'orderBy' => 'sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_recently_updated' => '< lib.contentElement', 'menu_recently_updated.' => array('templateName' => 'MenuRecentlyUpdated', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'updated', 'special.' => array('value.' => array('field' => 'pages'), 'maxAge' => '3600*24*7', 'excludeNoSearchPages' => '1'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_related_pages' => '< lib.contentElement', 'menu_related_pages.' => array('templateName' => 'MenuRelatedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'keywords', 'special.' => array('value.' => array('field' => 'pages'), 'excludeNoSearchPages' => '1'), 'alternativeSortingField' => 'title', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap' => '< lib.contentElement', 'menu_sitemap.' => array('templateName' => 'MenuSitemap', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap_pages' => '< lib.contentElement', 'menu_sitemap_pages.' => array('templateName' => 'MenuSitemapPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'form_formframework' => '< lib.contentElement', 'form_formframework.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Form', 'pluginName' => 'Formframework')), 'felogin_login' => '< lib.contentElement', 'felogin_login.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Felogin', 'pluginName' => 'Login')), 't3sbs_fluidtemplate' => 'COA', 't3sbs_fluidtemplate.' => array('FLUIDTEMPLATE', '10.' => array('file.' => array('stdWrap.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'subheader', 'ifEmpty.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => 'EXT:t3sbootstrap/Resources/Private/Templates/Content/FluidTemplate.html'))))), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'settings.' => array('expandedContent' => '0', 'fontawesome.' => array('pagetitle' => '1'), 'codesnippet' => '0', 'lazyLoad' => '0', 'lazyLoadThreshold' => '0', 'webp' => '0', 'pagebrowser.' => array('enable' => '0'), 'backToTopTitle' => 'to top', 'backToTopClass' => 'fa fa-chevron-circle-up fa-4x text-dark', 'backToTopForAllPages' => '0', 'gtm' => '', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'sectionmenuIcons' => '0', 'navbar.' => array('image.' => array('defaultPath' => '/typo3conf/ext/t3sbootstrap/Resources/Public/Images/bootstrap-logo-white.svg', 'width' => '300', 'height' => '50', 'altText' => 'Company Logo'), 'subdropdown.' => array('twoColumns' => '30'), 'searchboxLink' => '0', 'feUserName' => '0', 'sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400'), 'pages.' => array('override.' => array('smallColumns' => '', 'breakpoint' => '')), 'config.' => array('uid' => '23', 'company' => 'pixelegg', 'homepageUid' => '1', 'pageTitle' => '0', 'pageTitlealign' => 'center', 'pageTitlecontainer' => 'container', 'pageTitleclass' => 'mb-3', 'metaEnable' => 'end', 'metaValue' => '13', 'metaContainer' => 'container', 'metaClass' => '0', 'metaText' => '<a class="p-2" href="tel:+49"><i class="fas fa-phone mr-1"></i> jetzt anrufen </a>', 'navbarEnable' => 'light', 'navbarEntrylevel' => '0', 'navbarLevels' => '4', 'navbarExcludeuiduist' => '0', 'navbarIncludespacer' => '0', 'navbarSectionmenu' => '0', 'navbarMegamenu' => '1', 'navbarHover' => '0', 'navbarClickableparent' => '1', 'navbarPlusicon' => '{$bootstrap.config.navbarPlusicon}', 'navbarDropdownAnimate' => '0', 'navbarBrand' => 'image', 'navbarbrandAlignment' => 'left', 'navbarImage' => '/fileadmin/setup/images/logo/logo.svg', 'navbarColor' => 'white', 'navbarBackground' => '0', 'navbarTransparent' => '0', 'navbarContainer' => '0', 'navbarInnercontainer' => 'container', 'navbarPlacement' => '0', 'navbarAlignment' => 'right', 'navbarClass' => '0', 'navbarToggler' => 'right', 'navbarAnimatedtoggler' => '0', 'navbarBreakpoint' => 'xl', 'navbarOffcanvas' => '1', 'navbarHeight' => '0', 'navbarSearchbox' => '0', 'navbarLangmenu' => '0', 'navbarShrinkcolorschemes' => 'white', 'navbarShrinkcolor' => 'dark', 'navbarRightMenuUidList' => '0', 'navbarExtraRow' => '0', 'navbarLangFlags' => '1', 'jumbotronEnable' => '1', 'jumbotronBgimage' => 'root', 'jumbotronSlide' => '0', 'jumbotronPosition' => 'below', 'jumbotronContainer' => 'none', 'jumbotronContainerposition' => 'Inside', 'jumbotronClass' => 'm-0 p-0', 'jumbotronCarouselInterval' => '500', 'jumbotronCarouselPause' => '', 'breadcrumbEnable' => '0', 'breadcrumbNotonrootpage' => '1', 'breadcrumbFaicon' => '1', 'breadcrumbCorner' => '0', 'breadcrumbBottom' => '0', 'breadcrumbPosition' => 'belowJum', 'breadcrumbContainer' => 'container', 'breadcrumbContainerposition' => 'inside', 'breadcrumbClass' => '0', 'sidebarEnable' => 'Sub', 'sidebarRightenable' => '0', 'sidebarLevels' => '4', 'sidebarEntrylevel' => '1', 'sidebarExcludeuiduist' => '0', 'sidebarIncludespacer' => '0', 'sidebarSectionMobile' => '0', 'footerEnable' => '1', 'footerFluid' => '{$bootstrap.config.footerFluid}', 'footerSlide' => '1', 'footerSticky' => '0', 'footerContainer' => 'container', 'footerContainerposition' => 'Inside', 'footerClass' => 'bg-dark text-white border-top border-dark', 'footerPid' => '6', 'expandedcontentEnabletop' => '0', 'expandedcontentSlidetop' => '0', 'expandedcontentContainerpositiontop' => 'Inside', 'expandedcontentContainertop' => 'none', 'expandedcontentClasstop' => '0', 'expandedcontentEnablebottom' => '1', 'expandedcontentSlidebottom' => '0', 'expandedcontentContainerpositionbottom' => 'Inside', 'expandedcontentContainerbottom' => 'none', 'expandedcontentClassbottom' => '0', 'generalRootline' => '1', 'contentOnlyOnRootpage' => '0', 'jqueryHeader' => '1', 'compress' => '0', 'disablePrefixComment' => '1', 'containerError' => '0', 'slideLeftAside' => '0', 'slideRightAside' => '0', 'pageContentExtraClass' => '0', 'bodyExtraClass' => '0', 'asideExtraClass' => '0', 'mainExtraClass' => '0', 'globalPaddingTop' => '0', 'stickyFooterExtraPadding' => '0', 'contentMarginTop' => '0', 'loadingSpinner' => '0', 'loadingSpinnerColor' => 'primary', 'lightboxSelection' => '2', 'magnifying' => '1', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sectionmenuStickyTop' => '0', 'backgroundImageEnable' => '0', 'backgroundImageSlide' => '0', 'shrinkingNavPadding' => '5', 'sidebarMenuPosition' => 'above', 'langMenuWithFaIcon' => '1', 'subheaderColor' => 'secondary', 'dateFormat' => 'd.m.Y', 'favicon' => '0', 'faLinkIcons' => '1', 'cardFlipperOnClick' => '0', 'lastModifiedContentElement' => '0', 'recentlyUpdatedContentElements' => '0'), 'indexedsearch.' => array('targetPid' => '0')))), 't3sbs_button' => '< lib.contentElement', 't3sbs_button.' => array('templateName' => 'Button', 'stdWrap.' => array('editIcons' => 'tt_content')), 't3sbs_card' => '< lib.contentElement', 't3sbs_card.' => array('templateName' => 'Card', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2560', 'minimumWidth' => '1', 'ratioWithHeight' => '1', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'overrideSmallColumns' => '', 'configuid' => '{$bootstrap.db.uid}'), 'T3SBS\\T3sbootstrap\\DataProcessing\\CardProcessor'), 'stdWrap.' => array('editIcons' => 'tt_content')), 't3sbs_carousel' => '< lib.contentElement', 't3sbs_carousel.' => array('templateName' => 'Carousel', 'settings.' => array('defaultHeaderType' => '3'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets'))), 'stdWrap.' => array('editIcons' => 'tt_content')), 't3sbs_mediaobject' => '< lib.contentElement', 't3sbs_mediaobject.' => array('templateName' => 'Mediaobject', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2560', 'minimumWidth' => '1', 'ratioWithHeight' => '1', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '{$bootstrap.db.uid}')), 'stdWrap.' => array('editIcons' => 'tt_content')), 't3sbs_gallery' => '< lib.contentElement', 't3sbs_gallery.' => array('templateName' => 'ImageGallery', 'settings.' => array('defaultHeaderType' => '2'), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\BsImageGalleryProcessor', '10.' => array('references.' => array('fieldName' => 'assets'), 'as' => 'files', 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2560', 'minimumWidth' => '1', 'ratioWithHeight' => '1', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '{$bootstrap.db.uid}')), 'stdWrap.' => array('editIcons' => 'tt_content')), 't3sbs_toast' => '< lib.contentElement', 't3sbs_toast.' => array('templateName' => 'Toast', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2560', 'minimumWidth' => '1', 'ratioWithHeight' => '1', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '{$bootstrap.db.uid}')), 'stdWrap.' => array('editIcons' => 'tt_content')), 'two_columns' => 'FLUIDTEMPLATE', 'two_columns.' => array('templateName' => 'TwoColumns', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '221.' => array('colPos' => '221', 'as' => 'col_221'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '222.' => array('colPos' => '222', 'as' => 'col_222'))), 'three_columns' => 'FLUIDTEMPLATE', 'three_columns.' => array('templateName' => 'ThreeColumns', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '231.' => array('colPos' => '231', 'as' => 'col_231'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '232.' => array('colPos' => '232', 'as' => 'col_232'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '233.' => array('colPos' => '233', 'as' => 'col_233'))), 'four_columns' => 'FLUIDTEMPLATE', 'four_columns.' => array('templateName' => 'FourColumns', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '241.' => array('colPos' => '241', 'as' => 'col_241'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '242.' => array('colPos' => '242', 'as' => 'col_242'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '243.' => array('colPos' => '243', 'as' => 'col_243'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '244.' => array('colPos' => '244', 'as' => 'col_244'))), 'six_columns' => 'FLUIDTEMPLATE', 'six_columns.' => array('templateName' => 'SixColumns', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '241.' => array('colPos' => '261', 'as' => 'col_261'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '242.' => array('colPos' => '262', 'as' => 'col_262'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '243.' => array('colPos' => '263', 'as' => 'col_263'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '244.' => array('colPos' => '264', 'as' => 'col_264'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '245.' => array('colPos' => '265', 'as' => 'col_265'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '246.' => array('colPos' => '266', 'as' => 'col_266'))), 'card_wrapper' => 'FLUIDTEMPLATE', 'card_wrapper.' => array('templateName' => 'CardWrapper', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '270.' => array('colPos' => '270', 'as' => 'col_270'))), 'button_group' => 'FLUIDTEMPLATE', 'button_group.' => array('templateName' => 'Buttongroup', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '271.' => array('colPos' => '271', 'as' => 'col_271'))), 'background_wrapper' => 'FLUIDTEMPLATE', 'background_wrapper.' => array('templateName' => 'BackgroundWrapper', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '273.' => array('colPos' => '273', 'as' => 'col_273'))), 'parallax_wrapper' => 'FLUIDTEMPLATE', 'parallax_wrapper.' => array('templateName' => 'ParallaxWrapper', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '274.' => array('colPos' => '274', 'as' => 'col_274'))), 'autoLayout_row' => 'FLUIDTEMPLATE', 'autoLayout_row.' => array('templateName' => 'AutoLayoutRow', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '272.' => array('colPos' => '272', 'as' => 'col_272'))), 'container' => 'FLUIDTEMPLATE', 'container.' => array('templateName' => 'Container', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '275.' => array('colPos' => '275', 'as' => 'col_275'))), 'carousel_container' => 'FLUIDTEMPLATE', 'carousel_container.' => array('templateName' => 'CarouselContainer', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '276.' => array('colPos' => '276', 'as' => 'col_276'))), 'collapsible_container' => 'FLUIDTEMPLATE', 'collapsible_container.' => array('templateName' => 'CollapsibleContainer', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '277.' => array('colPos' => '277', 'as' => 'col_277'))), 'collapsible_accordion' => 'FLUIDTEMPLATE', 'collapsible_accordion.' => array('templateName' => 'Collapsible', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '278.' => array('colPos' => '278', 'as' => 'col_278'))), 'modal' => 'FLUIDTEMPLATE', 'modal.' => array('templateName' => 'Modal', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '279.' => array('colPos' => '279', 'as' => 'col_279'))), 'tabs_container' => 'FLUIDTEMPLATE', 'tabs_container.' => array('templateName' => 'TabContainer', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '280.' => array('colPos' => '280', 'as' => 'col_280'))), 'tabs_tab' => 'FLUIDTEMPLATE', 'tabs_tab.' => array('templateName' => 'Tab', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '281.' => array('colPos' => '281', 'as' => 'col_281'))), 'listGroup_wrapper' => 'FLUIDTEMPLATE', 'listGroup_wrapper.' => array('templateName' => 'ListGroupWrapper', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '282.' => array('colPos' => '282', 'as' => 'col_282'))), 'masonry_wrapper' => 'FLUIDTEMPLATE', 'masonry_wrapper.' => array('templateName' => 'MasonryWrapper', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '283.' => array('colPos' => '283', 'as' => 'col_283'))), 'swiper_container' => 'FLUIDTEMPLATE', 'swiper_container.' => array('templateName' => 'SwiperContainer', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '300.' => array('colPos' => '300', 'as' => 'col_300'))), 'toast_container' => 'FLUIDTEMPLATE', 'toast_container.' => array('templateName' => 'ToastContainer', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '310.' => array('colPos' => '310', 'as' => 'col_310'))), 'counter_counter' => '< lib.contentElement', 'counter_counter.' => array('templateName' => 'Counter', 'settings.' => array('counter.' => array('start' => '0', 'end' => '100', 'duration' => '5000', 'delay' => '0', 'lazyStart' => '1', 'startEffect' => 'none', 'startEffectDuration' => '500', 'easing' => 'linear', 'title' => '', 'description' => ''))), 'iconcontent_iconcontent' => '< lib.contentElement', 'iconcontent_iconcontent.' => array('templateName' => 'IconContent', 'settings.' => array('iconcontent.' => array('icon' => '', 'link' => '', 'size' => '', 'color' => '', 'animation' => '', 'rotate' => '')))), 'tt_content')
in /html/typo3/typo3_src-10.4.37/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 724
                [$name, $conf] = $cF->getVal($key, $this->getTypoScriptFrontendController()->tmpl->setup);
                $conf = array_replace_recursive(is_array($conf) ? $conf : [], $confOverride);
                // Getting the cObject
                $timeTracker->incStackPointer();
                $content .= $this->cObjGetSingle($name, $conf, $key);
                $timeTracker->decStackPointer();
            } else {
                $hooked = false;
                // Application defined cObjects
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('CASE', array('key.' => array('field' => 'CType'), 'default' => 'TEXT', 'default.' => array('field' => 'CType', 'htmlSpecialChars' => '1', 'wrap' => '<p style="background-color: yellow; padding: 0.5em 1em;"><strong>ERROR:</strong> Content Element with uid "{field:uid}" and type "|" has no rendering definition!</p>', 'wrap.' => array('insertData' => '1')), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1'))), 'bullets' => '< lib.contentElement', 'bullets.' => array('templateName' => 'Bullets', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('if.' => array('value' => '5', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '20.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '5', 'equals.' => array('field' => 'bullets_type')), 'fieldDelimiter' => '|', 'as' => 'bullets')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext [bullets_type]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.bullets')))), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout|header_link], subheader, date', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.header')))), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2560', 'minimumWidth' => '1', 'ratioWithHeight' => '1', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '23')), 'stdWrap.' => array('editIcons' => 'tt_content : image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.image')))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('focuspoint_test' => 'USER', 'focuspoint_test.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Focuspoint', 'pluginName' => 'Test'), 'rxshariff_shariff' => 'USER', 'rxshariff_shariff.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'RxShariff', 'pluginName' => 'Shariff'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'newsslider_pi1' => 'USER', 'newsslider_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Newsslider', 'pluginName' => 'Pi1'), 'dpcookieconsent_pi1' => 'USER', 'dpcookieconsent_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DpCookieconsent', 'pluginName' => 'Pi1'), 'dpcookieconsent_pi2' => 'USER', 'dpcookieconsent_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DpCookieconsent', 'pluginName' => 'Pi2'), 'fpfractionslider_pi1' => 'USER', 'fpfractionslider_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'FpFractionslider', 'pluginName' => 'Pi1'), 'gomapsext_show' => 'USER', 'gomapsext_show.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'GoMapsExt', 'pluginName' => 'Show'), 'instagram_pi1' => 'USER', 'instagram_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Instagram', 'pluginName' => 'Pi1'), 'maps2_maps2' => 'USER', 'maps2_maps2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Maps2', 'pluginName' => 'Maps2'), 'maps2_searchwithinradius' => 'USER', 'maps2_searchwithinradius.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Maps2', 'pluginName' => 'SearchWithinRadius'), 'maps2_citymap' => 'USER', 'maps2_citymap.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Maps2', 'pluginName' => 'CityMap'), 'showcase_list' => 'USER', 'showcase_list.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Showcase', 'pluginName' => 'List'), 'showcase_slider' => 'USER', 'showcase_slider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Showcase', 'pluginName' => 'Slider'), 'showcase_show' => 'USER', 'showcase_show.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Showcase', 'pluginName' => 'Show'), 'ttaddress_listview' => 'USER', 'ttaddress_listview.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'TtAddress', 'pluginName' => 'ListView'))), 'shortcut' => '< lib.contentElement', 'shortcut.' => array('templateName' => 'Shortcut', 'variables.' => array('shortcuts' => 'RECORDS', 'shortcuts.' => array('source.' => array('field' => 'records'), 'tables' => 'tt_content,tx_news_domain_model_news', 'conf.' => array('tx_news_domain_model_news' => 'USER', 'tx_news_domain_model_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger', 'switchableControllerActions.' => array('News.' => array('detail')), 'settings' => '< plugin.tx_news.settings', 'settings.' => array('singleNews.' => array('field' => 'uid'), 'useStdWrap' => 'singleNews', 'insertRecord' => '1', 'isShortcut' => '1'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], records', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.shortcut'))), '20.' => array('tables' => 'tx_news_domain_model_news', 'conf.' => array('tx_news_domain_model_news' => 'USER', 'tx_news_domain_model_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger', 'switchableControllerActions.' => array('News.' => array('detail')), 'settings' => '< plugin.tx_news.settings', 'settings.' => array('singleNews.' => array('field' => 'uid'), 'useStdWrap' => 'singleNews', 'insertRecord' => '1', 'isShortcut' => '1'))))), 'table' => '< lib.contentElement', 'table.' => array('templateName' => 'Table', 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\CommaSeparatedValueProcessor', '10.' => array('fieldName' => 'bodytext', 'fieldDelimiter.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_delimiter'))), 'fieldEnclosure.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_enclosure')), 'if.' => array('value' => '0', 'equals.' => array('field' => 'table_enclosure'), 'negate' => '1')), 'maximumColumns.' => array('field' => 'cols'), 'as' => 'table')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, [table_caption|cols|table_header_position|table_tfoot]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.table')))), 'text' => '< lib.contentElement', 'text.' => array('templateName' => 'Text', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'textmedia' => '< lib.contentElement', 'textmedia.' => array('templateName' => 'Textmedia', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2560', 'minimumWidth' => '1', 'ratioWithHeight' => '1', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '23')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, assets [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textmedia')))), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'Textpic', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2560', 'minimumWidth' => '1', 'ratioWithHeight' => '1', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '23')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textpic')))), 'uploads' => '< lib.contentElement', 'uploads.' => array('templateName' => 'Uploads', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting', 'direction.' => array('field' => 'filelink_sorting_direction')))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], media, file_collections, filelink_sorting, [filelink_size|uploads_description|uploads_type]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.uploads')))), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_content' => '< lib.contentElement', 'menu_categorized_content.' => array('templateName' => 'MenuCategorizedContent', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tt_content', 'selectFields' => 'tt_content.*', 'groupBy' => 'uid', 'pidInList.' => array('data' => 'leveluid : 0'), 'recursive' => '99', 'join.' => array('data' => 'field:selected_categories', 'wrap' => 'sys_category_record_mm ON uid = sys_category_record_mm.uid_foreign AND sys_category_record_mm.uid_local IN(|)'), 'where.' => array('data' => 'field:category_field', 'wrap' => 'tablenames=\'tt_content\' and fieldname=\'|\''), 'orderBy' => 'tt_content.sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_pages' => '< lib.contentElement', 'menu_categorized_pages.' => array('templateName' => 'MenuCategorizedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'categories', 'special.' => array('value.' => array('field' => 'selected_categories'), 'relation.' => array('field' => 'category_field'), 'sorting' => 'title', 'order' => 'asc'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_pages' => '< lib.contentElement', 'menu_pages.' => array('templateName' => 'MenuPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_subpages' => '< lib.contentElement', 'menu_subpages.' => array('templateName' => 'MenuSubpages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu'))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages'))))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'as' => 'content', 'where' => 'sectionIndex = 1 AND ( colPos = 0 OR colPos > 199 )', 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')))))))), 'menu_section_pages' => '< lib.contentElement', 'menu_section_pages.' => array('templateName' => 'MenuSectionPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'orderBy' => 'sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_recently_updated' => '< lib.contentElement', 'menu_recently_updated.' => array('templateName' => 'MenuRecentlyUpdated', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'updated', 'special.' => array('value.' => array('field' => 'pages'), 'maxAge' => '3600*24*7', 'excludeNoSearchPages' => '1'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_related_pages' => '< lib.contentElement', 'menu_related_pages.' => array('templateName' => 'MenuRelatedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'keywords', 'special.' => array('value.' => array('field' => 'pages'), 'excludeNoSearchPages' => '1'), 'alternativeSortingField' => 'title', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap' => '< lib.contentElement', 'menu_sitemap.' => array('templateName' => 'MenuSitemap', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap_pages' => '< lib.contentElement', 'menu_sitemap_pages.' => array('templateName' => 'MenuSitemapPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'form_formframework' => '< lib.contentElement', 'form_formframework.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Form', 'pluginName' => 'Formframework')), 'felogin_login' => '< lib.contentElement', 'felogin_login.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Felogin', 'pluginName' => 'Login')), 't3sbs_fluidtemplate' => 'COA', 't3sbs_fluidtemplate.' => array('FLUIDTEMPLATE', '10.' => array('file.' => array('stdWrap.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'subheader', 'ifEmpty.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => 'EXT:t3sbootstrap/Resources/Private/Templates/Content/FluidTemplate.html'))))), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'settings.' => array('expandedContent' => '0', 'fontawesome.' => array('pagetitle' => '1'), 'codesnippet' => '0', 'lazyLoad' => '0', 'lazyLoadThreshold' => '0', 'webp' => '0', 'pagebrowser.' => array('enable' => '0'), 'backToTopTitle' => 'to top', 'backToTopClass' => 'fa fa-chevron-circle-up fa-4x text-dark', 'backToTopForAllPages' => '0', 'gtm' => '', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'sectionmenuIcons' => '0', 'navbar.' => array('image.' => array('defaultPath' => '/typo3conf/ext/t3sbootstrap/Resources/Public/Images/bootstrap-logo-white.svg', 'width' => '300', 'height' => '50', 'altText' => 'Company Logo'), 'subdropdown.' => array('twoColumns' => '30'), 'searchboxLink' => '0', 'feUserName' => '0', 'sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400'), 'pages.' => array('override.' => array('smallColumns' => '', 'breakpoint' => '')), 'config.' => array('uid' => '23', 'company' => 'pixelegg', 'homepageUid' => '1', 'pageTitle' => '0', 'pageTitlealign' => 'center', 'pageTitlecontainer' => 'container', 'pageTitleclass' => 'mb-3', 'metaEnable' => 'end', 'metaValue' => '13', 'metaContainer' => 'container', 'metaClass' => '0', 'metaText' => '<a class="p-2" href="tel:+49"><i class="fas fa-phone mr-1"></i> jetzt anrufen </a>', 'navbarEnable' => 'light', 'navbarEntrylevel' => '0', 'navbarLevels' => '4', 'navbarExcludeuiduist' => '0', 'navbarIncludespacer' => '0', 'navbarSectionmenu' => '0', 'navbarMegamenu' => '1', 'navbarHover' => '0', 'navbarClickableparent' => '1', 'navbarPlusicon' => '{$bootstrap.config.navbarPlusicon}', 'navbarDropdownAnimate' => '0', 'navbarBrand' => 'image', 'navbarbrandAlignment' => 'left', 'navbarImage' => '/fileadmin/setup/images/logo/logo.svg', 'navbarColor' => 'white', 'navbarBackground' => '0', 'navbarTransparent' => '0', 'navbarContainer' => '0', 'navbarInnercontainer' => 'container', 'navbarPlacement' => '0', 'navbarAlignment' => 'right', 'navbarClass' => '0', 'navbarToggler' => 'right', 'navbarAnimatedtoggler' => '0', 'navbarBreakpoint' => 'xl', 'navbarOffcanvas' => '1', 'navbarHeight' => '0', 'navbarSearchbox' => '0', 'navbarLangmenu' => '0', 'navbarShrinkcolorschemes' => 'white', 'navbarShrinkcolor' => 'dark', 'navbarRightMenuUidList' => '0', 'navbarExtraRow' => '0', 'navbarLangFlags' => '1', 'jumbotronEnable' => '1', 'jumbotronBgimage' => 'root', 'jumbotronSlide' => '0', 'jumbotronPosition' => 'below', 'jumbotronContainer' => 'none', 'jumbotronContainerposition' => 'Inside', 'jumbotronClass' => 'm-0 p-0', 'jumbotronCarouselInterval' => '500', 'jumbotronCarouselPause' => '', 'breadcrumbEnable' => '0', 'breadcrumbNotonrootpage' => '1', 'breadcrumbFaicon' => '1', 'breadcrumbCorner' => '0', 'breadcrumbBottom' => '0', 'breadcrumbPosition' => 'belowJum', 'breadcrumbContainer' => 'container', 'breadcrumbContainerposition' => 'inside', 'breadcrumbClass' => '0', 'sidebarEnable' => 'Sub', 'sidebarRightenable' => '0', 'sidebarLevels' => '4', 'sidebarEntrylevel' => '1', 'sidebarExcludeuiduist' => '0', 'sidebarIncludespacer' => '0', 'sidebarSectionMobile' => '0', 'footerEnable' => '1', 'footerFluid' => '{$bootstrap.config.footerFluid}', 'footerSlide' => '1', 'footerSticky' => '0', 'footerContainer' => 'container', 'footerContainerposition' => 'Inside', 'footerClass' => 'bg-dark text-white border-top border-dark', 'footerPid' => '6', 'expandedcontentEnabletop' => '0', 'expandedcontentSlidetop' => '0', 'expandedcontentContainerpositiontop' => 'Inside', 'expandedcontentContainertop' => 'none', 'expandedcontentClasstop' => '0', 'expandedcontentEnablebottom' => '1', 'expandedcontentSlidebottom' => '0', 'expandedcontentContainerpositionbottom' => 'Inside', 'expandedcontentContainerbottom' => 'none', 'expandedcontentClassbottom' => '0', 'generalRootline' => '1', 'contentOnlyOnRootpage' => '0', 'jqueryHeader' => '1', 'compress' => '0', 'disablePrefixComment' => '1', 'containerError' => '0', 'slideLeftAside' => '0', 'slideRightAside' => '0', 'pageContentExtraClass' => '0', 'bodyExtraClass' => '0', 'asideExtraClass' => '0', 'mainExtraClass' => '0', 'globalPaddingTop' => '0', 'stickyFooterExtraPadding' => '0', 'contentMarginTop' => '0', 'loadingSpinner' => '0', 'loadingSpinnerColor' => 'primary', 'lightboxSelection' => '2', 'magnifying' => '1', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sectionmenuStickyTop' => '0', 'backgroundImageEnable' => '0', 'backgroundImageSlide' => '0', 'shrinkingNavPadding' => '5', 'sidebarMenuPosition' => 'above', 'langMenuWithFaIcon' => '1', 'subheaderColor' => 'secondary', 'dateFormat' => 'd.m.Y', 'favicon' => '0', 'faLinkIcons' => '1', 'cardFlipperOnClick' => '0', 'lastModifiedContentElement' => '0', 'recentlyUpdatedContentElements' => '0'), 'indexedsearch.' => array('targetPid' => '0')))), 't3sbs_button' => '< lib.contentElement', 't3sbs_button.' => array('templateName' => 'Button', 'stdWrap.' => array('editIcons' => 'tt_content')), 't3sbs_card' => '< lib.contentElement', 't3sbs_card.' => array('templateName' => 'Card', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2560', 'minimumWidth' => '1', 'ratioWithHeight' => '1', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'overrideSmallColumns' => '', 'configuid' => '{$bootstrap.db.uid}'), 'T3SBS\\T3sbootstrap\\DataProcessing\\CardProcessor'), 'stdWrap.' => array('editIcons' => 'tt_content')), 't3sbs_carousel' => '< lib.contentElement', 't3sbs_carousel.' => array('templateName' => 'Carousel', 'settings.' => array('defaultHeaderType' => '3'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets'))), 'stdWrap.' => array('editIcons' => 'tt_content')), 't3sbs_mediaobject' => '< lib.contentElement', 't3sbs_mediaobject.' => array('templateName' => 'Mediaobject', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2560', 'minimumWidth' => '1', 'ratioWithHeight' => '1', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '{$bootstrap.db.uid}')), 'stdWrap.' => array('editIcons' => 'tt_content')), 't3sbs_gallery' => '< lib.contentElement', 't3sbs_gallery.' => array('templateName' => 'ImageGallery', 'settings.' => array('defaultHeaderType' => '2'), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\BsImageGalleryProcessor', '10.' => array('references.' => array('fieldName' => 'assets'), 'as' => 'files', 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2560', 'minimumWidth' => '1', 'ratioWithHeight' => '1', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '{$bootstrap.db.uid}')), 'stdWrap.' => array('editIcons' => 'tt_content')), 't3sbs_toast' => '< lib.contentElement', 't3sbs_toast.' => array('templateName' => 'Toast', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2560', 'minimumWidth' => '1', 'ratioWithHeight' => '1', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '{$bootstrap.db.uid}')), 'stdWrap.' => array('editIcons' => 'tt_content')), 'two_columns' => 'FLUIDTEMPLATE', 'two_columns.' => array('templateName' => 'TwoColumns', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '221.' => array('colPos' => '221', 'as' => 'col_221'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '222.' => array('colPos' => '222', 'as' => 'col_222'))), 'three_columns' => 'FLUIDTEMPLATE', 'three_columns.' => array('templateName' => 'ThreeColumns', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '231.' => array('colPos' => '231', 'as' => 'col_231'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '232.' => array('colPos' => '232', 'as' => 'col_232'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '233.' => array('colPos' => '233', 'as' => 'col_233'))), 'four_columns' => 'FLUIDTEMPLATE', 'four_columns.' => array('templateName' => 'FourColumns', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '241.' => array('colPos' => '241', 'as' => 'col_241'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '242.' => array('colPos' => '242', 'as' => 'col_242'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '243.' => array('colPos' => '243', 'as' => 'col_243'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '244.' => array('colPos' => '244', 'as' => 'col_244'))), 'six_columns' => 'FLUIDTEMPLATE', 'six_columns.' => array('templateName' => 'SixColumns', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '241.' => array('colPos' => '261', 'as' => 'col_261'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '242.' => array('colPos' => '262', 'as' => 'col_262'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '243.' => array('colPos' => '263', 'as' => 'col_263'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '244.' => array('colPos' => '264', 'as' => 'col_264'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '245.' => array('colPos' => '265', 'as' => 'col_265'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '246.' => array('colPos' => '266', 'as' => 'col_266'))), 'card_wrapper' => 'FLUIDTEMPLATE', 'card_wrapper.' => array('templateName' => 'CardWrapper', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '270.' => array('colPos' => '270', 'as' => 'col_270'))), 'button_group' => 'FLUIDTEMPLATE', 'button_group.' => array('templateName' => 'Buttongroup', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '271.' => array('colPos' => '271', 'as' => 'col_271'))), 'background_wrapper' => 'FLUIDTEMPLATE', 'background_wrapper.' => array('templateName' => 'BackgroundWrapper', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '273.' => array('colPos' => '273', 'as' => 'col_273'))), 'parallax_wrapper' => 'FLUIDTEMPLATE', 'parallax_wrapper.' => array('templateName' => 'ParallaxWrapper', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '274.' => array('colPos' => '274', 'as' => 'col_274'))), 'autoLayout_row' => 'FLUIDTEMPLATE', 'autoLayout_row.' => array('templateName' => 'AutoLayoutRow', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '272.' => array('colPos' => '272', 'as' => 'col_272'))), 'container' => 'FLUIDTEMPLATE', 'container.' => array('templateName' => 'Container', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '275.' => array('colPos' => '275', 'as' => 'col_275'))), 'carousel_container' => 'FLUIDTEMPLATE', 'carousel_container.' => array('templateName' => 'CarouselContainer', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '276.' => array('colPos' => '276', 'as' => 'col_276'))), 'collapsible_container' => 'FLUIDTEMPLATE', 'collapsible_container.' => array('templateName' => 'CollapsibleContainer', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '277.' => array('colPos' => '277', 'as' => 'col_277'))), 'collapsible_accordion' => 'FLUIDTEMPLATE', 'collapsible_accordion.' => array('templateName' => 'Collapsible', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '278.' => array('colPos' => '278', 'as' => 'col_278'))), 'modal' => 'FLUIDTEMPLATE', 'modal.' => array('templateName' => 'Modal', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '279.' => array('colPos' => '279', 'as' => 'col_279'))), 'tabs_container' => 'FLUIDTEMPLATE', 'tabs_container.' => array('templateName' => 'TabContainer', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '280.' => array('colPos' => '280', 'as' => 'col_280'))), 'tabs_tab' => 'FLUIDTEMPLATE', 'tabs_tab.' => array('templateName' => 'Tab', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '281.' => array('colPos' => '281', 'as' => 'col_281'))), 'listGroup_wrapper' => 'FLUIDTEMPLATE', 'listGroup_wrapper.' => array('templateName' => 'ListGroupWrapper', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '282.' => array('colPos' => '282', 'as' => 'col_282'))), 'masonry_wrapper' => 'FLUIDTEMPLATE', 'masonry_wrapper.' => array('templateName' => 'MasonryWrapper', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '283.' => array('colPos' => '283', 'as' => 'col_283'))), 'swiper_container' => 'FLUIDTEMPLATE', 'swiper_container.' => array('templateName' => 'SwiperContainer', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '300.' => array('colPos' => '300', 'as' => 'col_300'))), 'toast_container' => 'FLUIDTEMPLATE', 'toast_container.' => array('templateName' => 'ToastContainer', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '310.' => array('colPos' => '310', 'as' => 'col_310'))), 'counter_counter' => '< lib.contentElement', 'counter_counter.' => array('templateName' => 'Counter', 'settings.' => array('counter.' => array('start' => '0', 'end' => '100', 'duration' => '5000', 'delay' => '0', 'lazyStart' => '1', 'startEffect' => 'none', 'startEffectDuration' => '500', 'easing' => 'linear', 'title' => '', 'description' => ''))), 'iconcontent_iconcontent' => '< lib.contentElement', 'iconcontent_iconcontent.' => array('templateName' => 'IconContent', 'settings.' => array('iconcontent.' => array('icon' => '', 'link' => '', 'size' => '', 'color' => '', 'animation' => '', 'rotate' => '')))), '')
in /html/typo3/typo3_src-10.4.37/typo3/sysext/frontend/Classes/ContentObject/RecordsContentObject.php line 119
                            $cObj->parentRecordNumber = $this->cObj->currentRecordNumber;
                            $GLOBALS['TSFE']->currentRecord = $val['table'] . ':' . $val['id'];
                            $this->cObj->lastChanged($row['tstamp']);
                            $cObj->start($row, $val['table']);
                            $tmpValue = $cObj->cObjGetSingle($renderObjName, $renderObjConf, $renderObjKey);
                            $theValue .= $tmpValue;
                        }
                    }
                }
at TYPO3\CMS\Frontend\ContentObject\RecordsContentObject->render(array('tables' => 'tt_content', 'source' => 3120))
in /html/typo3/typo3_src-10.4.37/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 829
        }

        // 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(object(TYPO3\CMS\Frontend\ContentObject\RecordsContentObject), array('tables' => 'tt_content', 'source' => 3120))
in /html/typo3/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(object(TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer), object(B13\Container\Domain\Model\Container), 273, 'col_273', array('be_layout' => 'OneCol', 'data' => array('uid' => 3119, 'pid' => 161, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 2200, 'tstamp' => 1634821945, 'crdate' => 1634821945, 'cruser_id' => 3, 'editlock' => 0, 'hidden' => 0, 'sorting' => 516, 'CType' => 'background_wrapper', 'header' => 'BG', 'header_position' => '', 'rowDescription' => '', 'bodytext' => null, 'bullets_type' => 0, 'uploads_description' => 0, 'uploads_type' => 0, 'assets' => 0, 'image' => 0, 'imagewidth' => 0, 'imageorient' => 0, 'imagecols' => 1, 'imageborder' => 0, 'media' => 0, 'layout' => 0, 'frame_class' => 'default', 'deleted' => 0, 'cols' => 0, 'space_before_class' => '', 'space_after_class' => '', 'records' => '', 'pages' => '', 'starttime' => 0, 'endtime' => 0, 'colPos' => 0, 'subheader' => '', 'fe_group' => '', 'header_link' => '', 'image_zoom' => 0, 'header_layout' => '100', 'list_type' => '', 'sectionIndex' => 0, 'linkToTop' => 0, 'file_collections' => '', 'filelink_size' => 0, 'filelink_sorting' => '', 'target' => '', 'date' => 0, 'recursive' => 0, 'imageheight' => 0, 'sys_language_uid' => 0, 'pi_flexform' => null, 'accessibility_title' => '', 'accessibility_bypass' => 0, 'accessibility_bypass_text' => '', 'l18n_parent' => 0, 'l18n_diffsource' => 'a:3:{s:6:"colPos";N;s:16:"sys_language_uid";N;s:19:"tx_container_parent";N;}', 'l10n_source' => 0, 'selected_categories' => '', 'category_field' => '', 'table_class' => '', 'table_caption' => null, 'table_delimiter' => 124, 'table_enclosure' => 0, 'table_header_position' => 0, 'table_tfoot' => 0, 'tx_impexp_origuid' => 0, 'l10n_state' => null, 'categories' => 0, 'tx_news_related_news' => 0, 'tx_t3sbootstrap_header_display' => '', 'tx_t3sbootstrap_header_class' => '', 'tx_t3sbootstrap_padding_sides' => '', 'tx_t3sbootstrap_padding_size' => '0', 'tx_t3sbootstrap_margin_sides' => '', 'tx_t3sbootstrap_margin_size' => '0', 'tx_t3sbootstrap_flexbox_columns' => '', 'tx_t3sbootstrap_flexbox_prefix' => '', 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_extra_class' => '', 'tx_t3sbootstrap_bgcolor' => '', 'tx_t3sbootstrap_contextcolor' => '', 'tx_t3sbootstrap_textcolor' => '', 'tx_t3sbootstrap_flexform' => '<?xml version="1.0" encoding="utf-8" standalone="yes" ?><T3FlexForms> <data> <sheet index="sDEF"> <language index="lDEF"> <field index="hidden"> <value index="vDEF">0</value> </field> <field index="bgwlink"> <value index="vDEF">0</value> </field> </language> </sheet> <sheet index="background"> <language index="lDEF"> <field index="noMediaPaddingTopBottom"> <value index="vDEF">5</value> </field> </language> </sheet> </data></T3FlexForms>', 'tx_t3sbootstrap_inTextImgRowWidth' => 'auto', 'tx_t3sbootstrap_bordercolor' => '', 'tx_t3sbootstrap_header_position' => 'above', 'tx_t3sbootstrap_image_ratio' => '', 'tx_t3sbootstrap_header_fontawesome' => '', 'tx_t3sbootstrap_header_celink' => 0, 'tx_slick_pages' => '', 'filelink_sorting_direction' => '', 'tx_t3sbootstrap_header_sectionMenu' => '', 'tx_t3sbootstrap_bgopacity' => '100', 'tx_t3sbootstrap_animateCss' => '0', 'tx_t3sbootstrap_animateCssDuration' => '0', 'tx_t3sbootstrap_animateCssDelay' => '0', 'tx_t3sbootstrap_animateCssRepeat' => 0, 'tx_t3sbootstrap_sectionOrder' => '0', 'tx_container_parent' => 0, 'image_ratio' => '', 'tx_t3sbootstrap_extra_style' => '', 'tx_t3sbootstrap_image_orig' => '', 'tx_wsslider_items' => 0, 'tx_wsslider_renderer' => null, 'tx_wsslider_layout' => 'Default', 'tx_t3sbootstrap_inTextImgColumns' => 0, 'tx_t3sbootstrap_galleryGutters' => 0, 'currentValue_kidjls9dksoje' => 'OneCol', 'configuid' => 23), 'current' => 'OneCol', 'dataAnimate' => false, 'isAnimateCss' => false, 'animateCssRepeat' => false, 'class' => '', 'header' => array('class' => '', 'hClass' => '', 'hColorVar' => '', 'hLine' => '', 'default' => '2'), 'style' => 'padding: 5rem 0;', 'isTxContainer' => true, 'enableAutoheight' => false, 'addHeight' => 0, 'controlStyle' => '', 'youtubeParams' => '?autoplay=&loop=&playlist=&mute=&rel=0&showinfo=0&controls=&modestbranding=', 'codesnippet' => false, 'containerError' => false), array('colPos' => '273', 'as' => 'col_273'))
in /html/typo3/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(object(TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer), array('templateName' => 'BackgroundWrapper', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '273.' => array('colPos' => '273', 'as' => 'col_273'))), array('colPos' => '273', 'as' => 'col_273'), array('be_layout' => 'OneCol', 'data' => array('uid' => 3119, 'pid' => 161, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 2200, 'tstamp' => 1634821945, 'crdate' => 1634821945, 'cruser_id' => 3, 'editlock' => 0, 'hidden' => 0, 'sorting' => 516, 'CType' => 'background_wrapper', 'header' => 'BG', 'header_position' => '', 'rowDescription' => '', 'bodytext' => null, 'bullets_type' => 0, 'uploads_description' => 0, 'uploads_type' => 0, 'assets' => 0, 'image' => 0, 'imagewidth' => 0, 'imageorient' => 0, 'imagecols' => 1, 'imageborder' => 0, 'media' => 0, 'layout' => 0, 'frame_class' => 'default', 'deleted' => 0, 'cols' => 0, 'space_before_class' => '', 'space_after_class' => '', 'records' => '', 'pages' => '', 'starttime' => 0, 'endtime' => 0, 'colPos' => 0, 'subheader' => '', 'fe_group' => '', 'header_link' => '', 'image_zoom' => 0, 'header_layout' => '100', 'list_type' => '', 'sectionIndex' => 0, 'linkToTop' => 0, 'file_collections' => '', 'filelink_size' => 0, 'filelink_sorting' => '', 'target' => '', 'date' => 0, 'recursive' => 0, 'imageheight' => 0, 'sys_language_uid' => 0, 'pi_flexform' => null, 'accessibility_title' => '', 'accessibility_bypass' => 0, 'accessibility_bypass_text' => '', 'l18n_parent' => 0, 'l18n_diffsource' => 'a:3:{s:6:"colPos";N;s:16:"sys_language_uid";N;s:19:"tx_container_parent";N;}', 'l10n_source' => 0, 'selected_categories' => '', 'category_field' => '', 'table_class' => '', 'table_caption' => null, 'table_delimiter' => 124, 'table_enclosure' => 0, 'table_header_position' => 0, 'table_tfoot' => 0, 'tx_impexp_origuid' => 0, 'l10n_state' => null, 'categories' => 0, 'tx_news_related_news' => 0, 'tx_t3sbootstrap_header_display' => '', 'tx_t3sbootstrap_header_class' => '', 'tx_t3sbootstrap_padding_sides' => '', 'tx_t3sbootstrap_padding_size' => '0', 'tx_t3sbootstrap_margin_sides' => '', 'tx_t3sbootstrap_margin_size' => '0', 'tx_t3sbootstrap_flexbox_columns' => '', 'tx_t3sbootstrap_flexbox_prefix' => '', 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_extra_class' => '', 'tx_t3sbootstrap_bgcolor' => '', 'tx_t3sbootstrap_contextcolor' => '', 'tx_t3sbootstrap_textcolor' => '', 'tx_t3sbootstrap_flexform' => '<?xml version="1.0" encoding="utf-8" standalone="yes" ?><T3FlexForms> <data> <sheet index="sDEF"> <language index="lDEF"> <field index="hidden"> <value index="vDEF">0</value> </field> <field index="bgwlink"> <value index="vDEF">0</value> </field> </language> </sheet> <sheet index="background"> <language index="lDEF"> <field index="noMediaPaddingTopBottom"> <value index="vDEF">5</value> </field> </language> </sheet> </data></T3FlexForms>', 'tx_t3sbootstrap_inTextImgRowWidth' => 'auto', 'tx_t3sbootstrap_bordercolor' => '', 'tx_t3sbootstrap_header_position' => 'above', 'tx_t3sbootstrap_image_ratio' => '', 'tx_t3sbootstrap_header_fontawesome' => '', 'tx_t3sbootstrap_header_celink' => 0, 'tx_slick_pages' => '', 'filelink_sorting_direction' => '', 'tx_t3sbootstrap_header_sectionMenu' => '', 'tx_t3sbootstrap_bgopacity' => '100', 'tx_t3sbootstrap_animateCss' => '0', 'tx_t3sbootstrap_animateCssDuration' => '0', 'tx_t3sbootstrap_animateCssDelay' => '0', 'tx_t3sbootstrap_animateCssRepeat' => 0, 'tx_t3sbootstrap_sectionOrder' => '0', 'tx_container_parent' => 0, 'image_ratio' => '', 'tx_t3sbootstrap_extra_style' => '', 'tx_t3sbootstrap_image_orig' => '', 'tx_wsslider_items' => 0, 'tx_wsslider_renderer' => null, 'tx_wsslider_layout' => 'Default', 'tx_t3sbootstrap_inTextImgColumns' => 0, 'tx_t3sbootstrap_galleryGutters' => 0, 'currentValue_kidjls9dksoje' => 'OneCol', 'configuid' => 23), 'current' => 'OneCol', 'dataAnimate' => false, 'isAnimateCss' => false, 'animateCssRepeat' => false, 'class' => '', 'header' => array('class' => '', 'hClass' => '', 'hColorVar' => '', 'hLine' => '', 'default' => '2'), 'style' => 'padding: 5rem 0;', 'isTxContainer' => true, 'enableAutoheight' => false, 'addHeight' => 0, 'controlStyle' => '', 'youtubeParams' => '?autoplay=&loop=&playlist=&mute=&rel=0&showinfo=0&controls=&modestbranding=', 'codesnippet' => false, 'containerError' => false))
in /html/typo3/typo3_src-10.4.37/typo3/sysext/frontend/Classes/ContentObject/ContentDataProcessor.php line 61

                $processorConfiguration = $processors[$key . '.'] ?? [];

                $variables = GeneralUtility::makeInstance($className)->process(
                    $cObject,
                    $configuration,
                    $processorConfiguration,
                    $variables
                );
at TYPO3\CMS\Frontend\ContentObject\ContentDataProcessor->process(object(TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer), array('templateName' => 'BackgroundWrapper', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '273.' => array('colPos' => '273', 'as' => 'col_273'))), array('be_layout' => 'OneCol', 'data' => array('uid' => 3119, 'pid' => 161, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 2200, 'tstamp' => 1634821945, 'crdate' => 1634821945, 'cruser_id' => 3, 'editlock' => 0, 'hidden' => 0, 'sorting' => 516, 'CType' => 'background_wrapper', 'header' => 'BG', 'header_position' => '', 'rowDescription' => '', 'bodytext' => null, 'bullets_type' => 0, 'uploads_description' => 0, 'uploads_type' => 0, 'assets' => 0, 'image' => 0, 'imagewidth' => 0, 'imageorient' => 0, 'imagecols' => 1, 'imageborder' => 0, 'media' => 0, 'layout' => 0, 'frame_class' => 'default', 'deleted' => 0, 'cols' => 0, 'space_before_class' => '', 'space_after_class' => '', 'records' => '', 'pages' => '', 'starttime' => 0, 'endtime' => 0, 'colPos' => 0, 'subheader' => '', 'fe_group' => '', 'header_link' => '', 'image_zoom' => 0, 'header_layout' => '100', 'list_type' => '', 'sectionIndex' => 0, 'linkToTop' => 0, 'file_collections' => '', 'filelink_size' => 0, 'filelink_sorting' => '', 'target' => '', 'date' => 0, 'recursive' => 0, 'imageheight' => 0, 'sys_language_uid' => 0, 'pi_flexform' => null, 'accessibility_title' => '', 'accessibility_bypass' => 0, 'accessibility_bypass_text' => '', 'l18n_parent' => 0, 'l18n_diffsource' => 'a:3:{s:6:"colPos";N;s:16:"sys_language_uid";N;s:19:"tx_container_parent";N;}', 'l10n_source' => 0, 'selected_categories' => '', 'category_field' => '', 'table_class' => '', 'table_caption' => null, 'table_delimiter' => 124, 'table_enclosure' => 0, 'table_header_position' => 0, 'table_tfoot' => 0, 'tx_impexp_origuid' => 0, 'l10n_state' => null, 'categories' => 0, 'tx_news_related_news' => 0, 'tx_t3sbootstrap_header_display' => '', 'tx_t3sbootstrap_header_class' => '', 'tx_t3sbootstrap_padding_sides' => '', 'tx_t3sbootstrap_padding_size' => '0', 'tx_t3sbootstrap_margin_sides' => '', 'tx_t3sbootstrap_margin_size' => '0', 'tx_t3sbootstrap_flexbox_columns' => '', 'tx_t3sbootstrap_flexbox_prefix' => '', 'tx_t3sbootstrap_container' => 'container', 'tx_t3sbootstrap_extra_class' => '', 'tx_t3sbootstrap_bgcolor' => '', 'tx_t3sbootstrap_contextcolor' => '', 'tx_t3sbootstrap_textcolor' => '', 'tx_t3sbootstrap_flexform' => '<?xml version="1.0" encoding="utf-8" standalone="yes" ?><T3FlexForms> <data> <sheet index="sDEF"> <language index="lDEF"> <field index="hidden"> <value index="vDEF">0</value> </field> <field index="bgwlink"> <value index="vDEF">0</value> </field> </language> </sheet> <sheet index="background"> <language index="lDEF"> <field index="noMediaPaddingTopBottom"> <value index="vDEF">5</value> </field> </language> </sheet> </data></T3FlexForms>', 'tx_t3sbootstrap_inTextImgRowWidth' => 'auto', 'tx_t3sbootstrap_bordercolor' => '', 'tx_t3sbootstrap_header_position' => 'above', 'tx_t3sbootstrap_image_ratio' => '', 'tx_t3sbootstrap_header_fontawesome' => '', 'tx_t3sbootstrap_header_celink' => 0, 'tx_slick_pages' => '', 'filelink_sorting_direction' => '', 'tx_t3sbootstrap_header_sectionMenu' => '', 'tx_t3sbootstrap_bgopacity' => '100', 'tx_t3sbootstrap_animateCss' => '0', 'tx_t3sbootstrap_animateCssDuration' => '0', 'tx_t3sbootstrap_animateCssDelay' => '0', 'tx_t3sbootstrap_animateCssRepeat' => 0, 'tx_t3sbootstrap_sectionOrder' => '0', 'tx_container_parent' => 0, 'image_ratio' => '', 'tx_t3sbootstrap_extra_style' => '', 'tx_t3sbootstrap_image_orig' => '', 'tx_wsslider_items' => 0, 'tx_wsslider_renderer' => null, 'tx_wsslider_layout' => 'Default', 'tx_t3sbootstrap_inTextImgColumns' => 0, 'tx_t3sbootstrap_galleryGutters' => 0, 'currentValue_kidjls9dksoje' => 'OneCol', 'configuid' => 23), 'current' => 'OneCol', 'dataAnimate' => false, 'isAnimateCss' => false, 'animateCssRepeat' => false, 'class' => '', 'header' => array('class' => '', 'hClass' => '', 'hColorVar' => '', 'hLine' => '', 'default' => '2'), 'style' => 'padding: 5rem 0;', 'isTxContainer' => true, 'enableAutoheight' => false, 'addHeight' => 0, 'controlStyle' => '', 'youtubeParams' => '?autoplay=&loop=&playlist=&mute=&rel=0&showinfo=0&controls=&modestbranding=', 'codesnippet' => false, 'containerError' => false))
in /html/typo3/typo3_src-10.4.37/typo3/sysext/frontend/Classes/ContentObject/FluidTemplateContentObject.php line 103
        $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(array('templateName' => 'BackgroundWrapper', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '273.' => array('colPos' => '273', 'as' => 'col_273'))))
in /html/typo3/typo3_src-10.4.37/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 829
        }

        // 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(object(TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject), array('templateName' => 'BackgroundWrapper', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '273.' => array('colPos' => '273', 'as' => 'col_273'))))
in /html/typo3/typo3_src-10.4.37/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 743
                }
                if (!$hooked) {
                    $contentObject = $this->getContentObject($name);
                    if ($contentObject) {
                        $content .= $this->render($contentObject, $conf);
                    } else {
                        // Call hook functions for extra processing
                        if ($name) {
                            if (!empty($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['cObjTypeAndClassDefault'])) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('FLUIDTEMPLATE', array('templateName' => 'BackgroundWrapper', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '273.' => array('colPos' => '273', 'as' => 'col_273'))), 'background_wrapper')
in /html/typo3/typo3_src-10.4.37/typo3/sysext/frontend/Classes/ContentObject/CaseContentObject.php line 47
        // 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(array('key.' => array('field' => 'CType'), 'default' => 'TEXT', 'default.' => array('field' => 'CType', 'htmlSpecialChars' => '1', 'wrap' => '<p style="background-color: yellow; padding: 0.5em 1em;"><strong>ERROR:</strong> Content Element with uid "{field:uid}" and type "|" has no rendering definition!</p>', 'wrap.' => array('insertData' => '1')), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1'))), 'bullets' => '< lib.contentElement', 'bullets.' => array('templateName' => 'Bullets', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('if.' => array('value' => '5', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '20.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '5', 'equals.' => array('field' => 'bullets_type')), 'fieldDelimiter' => '|', 'as' => 'bullets')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext [bullets_type]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.bullets')))), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout|header_link], subheader, date', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.header')))), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2560', 'minimumWidth' => '1', 'ratioWithHeight' => '1', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '23')), 'stdWrap.' => array('editIcons' => 'tt_content : image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.image')))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('focuspoint_test' => 'USER', 'focuspoint_test.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Focuspoint', 'pluginName' => 'Test'), 'rxshariff_shariff' => 'USER', 'rxshariff_shariff.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'RxShariff', 'pluginName' => 'Shariff'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'newsslider_pi1' => 'USER', 'newsslider_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Newsslider', 'pluginName' => 'Pi1'), 'dpcookieconsent_pi1' => 'USER', 'dpcookieconsent_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DpCookieconsent', 'pluginName' => 'Pi1'), 'dpcookieconsent_pi2' => 'USER', 'dpcookieconsent_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DpCookieconsent', 'pluginName' => 'Pi2'), 'fpfractionslider_pi1' => 'USER', 'fpfractionslider_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'FpFractionslider', 'pluginName' => 'Pi1'), 'gomapsext_show' => 'USER', 'gomapsext_show.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'GoMapsExt', 'pluginName' => 'Show'), 'instagram_pi1' => 'USER', 'instagram_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Instagram', 'pluginName' => 'Pi1'), 'maps2_maps2' => 'USER', 'maps2_maps2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Maps2', 'pluginName' => 'Maps2'), 'maps2_searchwithinradius' => 'USER', 'maps2_searchwithinradius.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Maps2', 'pluginName' => 'SearchWithinRadius'), 'maps2_citymap' => 'USER', 'maps2_citymap.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Maps2', 'pluginName' => 'CityMap'), 'showcase_list' => 'USER', 'showcase_list.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Showcase', 'pluginName' => 'List'), 'showcase_slider' => 'USER', 'showcase_slider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Showcase', 'pluginName' => 'Slider'), 'showcase_show' => 'USER', 'showcase_show.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Showcase', 'pluginName' => 'Show'), 'ttaddress_listview' => 'USER', 'ttaddress_listview.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'TtAddress', 'pluginName' => 'ListView'))), 'shortcut' => '< lib.contentElement', 'shortcut.' => array('templateName' => 'Shortcut', 'variables.' => array('shortcuts' => 'RECORDS', 'shortcuts.' => array('source.' => array('field' => 'records'), 'tables' => 'tt_content,tx_news_domain_model_news', 'conf.' => array('tx_news_domain_model_news' => 'USER', 'tx_news_domain_model_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger', 'switchableControllerActions.' => array('News.' => array('detail')), 'settings' => '< plugin.tx_news.settings', 'settings.' => array('singleNews.' => array('field' => 'uid'), 'useStdWrap' => 'singleNews', 'insertRecord' => '1', 'isShortcut' => '1'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], records', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.shortcut'))), '20.' => array('tables' => 'tx_news_domain_model_news', 'conf.' => array('tx_news_domain_model_news' => 'USER', 'tx_news_domain_model_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger', 'switchableControllerActions.' => array('News.' => array('detail')), 'settings' => '< plugin.tx_news.settings', 'settings.' => array('singleNews.' => array('field' => 'uid'), 'useStdWrap' => 'singleNews', 'insertRecord' => '1', 'isShortcut' => '1'))))), 'table' => '< lib.contentElement', 'table.' => array('templateName' => 'Table', 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\CommaSeparatedValueProcessor', '10.' => array('fieldName' => 'bodytext', 'fieldDelimiter.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_delimiter'))), 'fieldEnclosure.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_enclosure')), 'if.' => array('value' => '0', 'equals.' => array('field' => 'table_enclosure'), 'negate' => '1')), 'maximumColumns.' => array('field' => 'cols'), 'as' => 'table')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, [table_caption|cols|table_header_position|table_tfoot]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.table')))), 'text' => '< lib.contentElement', 'text.' => array('templateName' => 'Text', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'textmedia' => '< lib.contentElement', 'textmedia.' => array('templateName' => 'Textmedia', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2560', 'minimumWidth' => '1', 'ratioWithHeight' => '1', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '23')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, assets [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textmedia')))), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'Textpic', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2560', 'minimumWidth' => '1', 'ratioWithHeight' => '1', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '23')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textpic')))), 'uploads' => '< lib.contentElement', 'uploads.' => array('templateName' => 'Uploads', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting', 'direction.' => array('field' => 'filelink_sorting_direction')))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], media, file_collections, filelink_sorting, [filelink_size|uploads_description|uploads_type]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.uploads')))), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_content' => '< lib.contentElement', 'menu_categorized_content.' => array('templateName' => 'MenuCategorizedContent', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tt_content', 'selectFields' => 'tt_content.*', 'groupBy' => 'uid', 'pidInList.' => array('data' => 'leveluid : 0'), 'recursive' => '99', 'join.' => array('data' => 'field:selected_categories', 'wrap' => 'sys_category_record_mm ON uid = sys_category_record_mm.uid_foreign AND sys_category_record_mm.uid_local IN(|)'), 'where.' => array('data' => 'field:category_field', 'wrap' => 'tablenames=\'tt_content\' and fieldname=\'|\''), 'orderBy' => 'tt_content.sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_pages' => '< lib.contentElement', 'menu_categorized_pages.' => array('templateName' => 'MenuCategorizedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'categories', 'special.' => array('value.' => array('field' => 'selected_categories'), 'relation.' => array('field' => 'category_field'), 'sorting' => 'title', 'order' => 'asc'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_pages' => '< lib.contentElement', 'menu_pages.' => array('templateName' => 'MenuPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_subpages' => '< lib.contentElement', 'menu_subpages.' => array('templateName' => 'MenuSubpages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu'))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages'))))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'as' => 'content', 'where' => 'sectionIndex = 1 AND ( colPos = 0 OR colPos > 199 )', 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')))))))), 'menu_section_pages' => '< lib.contentElement', 'menu_section_pages.' => array('templateName' => 'MenuSectionPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'orderBy' => 'sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_recently_updated' => '< lib.contentElement', 'menu_recently_updated.' => array('templateName' => 'MenuRecentlyUpdated', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'updated', 'special.' => array('value.' => array('field' => 'pages'), 'maxAge' => '3600*24*7', 'excludeNoSearchPages' => '1'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_related_pages' => '< lib.contentElement', 'menu_related_pages.' => array('templateName' => 'MenuRelatedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'keywords', 'special.' => array('value.' => array('field' => 'pages'), 'excludeNoSearchPages' => '1'), 'alternativeSortingField' => 'title', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap' => '< lib.contentElement', 'menu_sitemap.' => array('templateName' => 'MenuSitemap', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap_pages' => '< lib.contentElement', 'menu_sitemap_pages.' => array('templateName' => 'MenuSitemapPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'form_formframework' => '< lib.contentElement', 'form_formframework.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Form', 'pluginName' => 'Formframework')), 'felogin_login' => '< lib.contentElement', 'felogin_login.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Felogin', 'pluginName' => 'Login')), 't3sbs_fluidtemplate' => 'COA', 't3sbs_fluidtemplate.' => array('FLUIDTEMPLATE', '10.' => array('file.' => array('stdWrap.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'subheader', 'ifEmpty.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => 'EXT:t3sbootstrap/Resources/Private/Templates/Content/FluidTemplate.html'))))), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'settings.' => array('expandedContent' => '0', 'fontawesome.' => array('pagetitle' => '1'), 'codesnippet' => '0', 'lazyLoad' => '0', 'lazyLoadThreshold' => '0', 'webp' => '0', 'pagebrowser.' => array('enable' => '0'), 'backToTopTitle' => 'to top', 'backToTopClass' => 'fa fa-chevron-circle-up fa-4x text-dark', 'backToTopForAllPages' => '0', 'gtm' => '', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'sectionmenuIcons' => '0', 'navbar.' => array('image.' => array('defaultPath' => '/typo3conf/ext/t3sbootstrap/Resources/Public/Images/bootstrap-logo-white.svg', 'width' => '300', 'height' => '50', 'altText' => 'Company Logo'), 'subdropdown.' => array('twoColumns' => '30'), 'searchboxLink' => '0', 'feUserName' => '0', 'sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400'), 'pages.' => array('override.' => array('smallColumns' => '', 'breakpoint' => '')), 'config.' => array('uid' => '23', 'company' => 'pixelegg', 'homepageUid' => '1', 'pageTitle' => '0', 'pageTitlealign' => 'center', 'pageTitlecontainer' => 'container', 'pageTitleclass' => 'mb-3', 'metaEnable' => 'end', 'metaValue' => '13', 'metaContainer' => 'container', 'metaClass' => '0', 'metaText' => '<a class="p-2" href="tel:+49"><i class="fas fa-phone mr-1"></i> jetzt anrufen </a>', 'navbarEnable' => 'light', 'navbarEntrylevel' => '0', 'navbarLevels' => '4', 'navbarExcludeuiduist' => '0', 'navbarIncludespacer' => '0', 'navbarSectionmenu' => '0', 'navbarMegamenu' => '1', 'navbarHover' => '0', 'navbarClickableparent' => '1', 'navbarPlusicon' => '{$bootstrap.config.navbarPlusicon}', 'navbarDropdownAnimate' => '0', 'navbarBrand' => 'image', 'navbarbrandAlignment' => 'left', 'navbarImage' => '/fileadmin/setup/images/logo/logo.svg', 'navbarColor' => 'white', 'navbarBackground' => '0', 'navbarTransparent' => '0', 'navbarContainer' => '0', 'navbarInnercontainer' => 'container', 'navbarPlacement' => '0', 'navbarAlignment' => 'right', 'navbarClass' => '0', 'navbarToggler' => 'right', 'navbarAnimatedtoggler' => '0', 'navbarBreakpoint' => 'xl', 'navbarOffcanvas' => '1', 'navbarHeight' => '0', 'navbarSearchbox' => '0', 'navbarLangmenu' => '0', 'navbarShrinkcolorschemes' => 'white', 'navbarShrinkcolor' => 'dark', 'navbarRightMenuUidList' => '0', 'navbarExtraRow' => '0', 'navbarLangFlags' => '1', 'jumbotronEnable' => '1', 'jumbotronBgimage' => 'root', 'jumbotronSlide' => '0', 'jumbotronPosition' => 'below', 'jumbotronContainer' => 'none', 'jumbotronContainerposition' => 'Inside', 'jumbotronClass' => 'm-0 p-0', 'jumbotronCarouselInterval' => '500', 'jumbotronCarouselPause' => '', 'breadcrumbEnable' => '0', 'breadcrumbNotonrootpage' => '1', 'breadcrumbFaicon' => '1', 'breadcrumbCorner' => '0', 'breadcrumbBottom' => '0', 'breadcrumbPosition' => 'belowJum', 'breadcrumbContainer' => 'container', 'breadcrumbContainerposition' => 'inside', 'breadcrumbClass' => '0', 'sidebarEnable' => 'Sub', 'sidebarRightenable' => '0', 'sidebarLevels' => '4', 'sidebarEntrylevel' => '1', 'sidebarExcludeuiduist' => '0', 'sidebarIncludespacer' => '0', 'sidebarSectionMobile' => '0', 'footerEnable' => '1', 'footerFluid' => '{$bootstrap.config.footerFluid}', 'footerSlide' => '1', 'footerSticky' => '0', 'footerContainer' => 'container', 'footerContainerposition' => 'Inside', 'footerClass' => 'bg-dark text-white border-top border-dark', 'footerPid' => '6', 'expandedcontentEnabletop' => '0', 'expandedcontentSlidetop' => '0', 'expandedcontentContainerpositiontop' => 'Inside', 'expandedcontentContainertop' => 'none', 'expandedcontentClasstop' => '0', 'expandedcontentEnablebottom' => '1', 'expandedcontentSlidebottom' => '0', 'expandedcontentContainerpositionbottom' => 'Inside', 'expandedcontentContainerbottom' => 'none', 'expandedcontentClassbottom' => '0', 'generalRootline' => '1', 'contentOnlyOnRootpage' => '0', 'jqueryHeader' => '1', 'compress' => '0', 'disablePrefixComment' => '1', 'containerError' => '0', 'slideLeftAside' => '0', 'slideRightAside' => '0', 'pageContentExtraClass' => '0', 'bodyExtraClass' => '0', 'asideExtraClass' => '0', 'mainExtraClass' => '0', 'globalPaddingTop' => '0', 'stickyFooterExtraPadding' => '0', 'contentMarginTop' => '0', 'loadingSpinner' => '0', 'loadingSpinnerColor' => 'primary', 'lightboxSelection' => '2', 'magnifying' => '1', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sectionmenuStickyTop' => '0', 'backgroundImageEnable' => '0', 'backgroundImageSlide' => '0', 'shrinkingNavPadding' => '5', 'sidebarMenuPosition' => 'above', 'langMenuWithFaIcon' => '1', 'subheaderColor' => 'secondary', 'dateFormat' => 'd.m.Y', 'favicon' => '0', 'faLinkIcons' => '1', 'cardFlipperOnClick' => '0', 'lastModifiedContentElement' => '0', 'recentlyUpdatedContentElements' => '0'), 'indexedsearch.' => array('targetPid' => '0')))), 't3sbs_button' => '< lib.contentElement', 't3sbs_button.' => array('templateName' => 'Button', 'stdWrap.' => array('editIcons' => 'tt_content')), 't3sbs_card' => '< lib.contentElement', 't3sbs_card.' => array('templateName' => 'Card', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2560', 'minimumWidth' => '1', 'ratioWithHeight' => '1', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'overrideSmallColumns' => '', 'configuid' => '{$bootstrap.db.uid}'), 'T3SBS\\T3sbootstrap\\DataProcessing\\CardProcessor'), 'stdWrap.' => array('editIcons' => 'tt_content')), 't3sbs_carousel' => '< lib.contentElement', 't3sbs_carousel.' => array('templateName' => 'Carousel', 'settings.' => array('defaultHeaderType' => '3'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets'))), 'stdWrap.' => array('editIcons' => 'tt_content')), 't3sbs_mediaobject' => '< lib.contentElement', 't3sbs_mediaobject.' => array('templateName' => 'Mediaobject', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2560', 'minimumWidth' => '1', 'ratioWithHeight' => '1', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '{$bootstrap.db.uid}')), 'stdWrap.' => array('editIcons' => 'tt_content')), 't3sbs_gallery' => '< lib.contentElement', 't3sbs_gallery.' => array('templateName' => 'ImageGallery', 'settings.' => array('defaultHeaderType' => '2'), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\BsImageGalleryProcessor', '10.' => array('references.' => array('fieldName' => 'assets'), 'as' => 'files', 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2560', 'minimumWidth' => '1', 'ratioWithHeight' => '1', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '{$bootstrap.db.uid}')), 'stdWrap.' => array('editIcons' => 'tt_content')), 't3sbs_toast' => '< lib.contentElement', 't3sbs_toast.' => array('templateName' => 'Toast', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2560', 'minimumWidth' => '1', 'ratioWithHeight' => '1', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '{$bootstrap.db.uid}')), 'stdWrap.' => array('editIcons' => 'tt_content')), 'two_columns' => 'FLUIDTEMPLATE', 'two_columns.' => array('templateName' => 'TwoColumns', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '221.' => array('colPos' => '221', 'as' => 'col_221'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '222.' => array('colPos' => '222', 'as' => 'col_222'))), 'three_columns' => 'FLUIDTEMPLATE', 'three_columns.' => array('templateName' => 'ThreeColumns', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '231.' => array('colPos' => '231', 'as' => 'col_231'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '232.' => array('colPos' => '232', 'as' => 'col_232'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '233.' => array('colPos' => '233', 'as' => 'col_233'))), 'four_columns' => 'FLUIDTEMPLATE', 'four_columns.' => array('templateName' => 'FourColumns', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '241.' => array('colPos' => '241', 'as' => 'col_241'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '242.' => array('colPos' => '242', 'as' => 'col_242'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '243.' => array('colPos' => '243', 'as' => 'col_243'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '244.' => array('colPos' => '244', 'as' => 'col_244'))), 'six_columns' => 'FLUIDTEMPLATE', 'six_columns.' => array('templateName' => 'SixColumns', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '241.' => array('colPos' => '261', 'as' => 'col_261'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '242.' => array('colPos' => '262', 'as' => 'col_262'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '243.' => array('colPos' => '263', 'as' => 'col_263'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '244.' => array('colPos' => '264', 'as' => 'col_264'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '245.' => array('colPos' => '265', 'as' => 'col_265'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '246.' => array('colPos' => '266', 'as' => 'col_266'))), 'card_wrapper' => 'FLUIDTEMPLATE', 'card_wrapper.' => array('templateName' => 'CardWrapper', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '270.' => array('colPos' => '270', 'as' => 'col_270'))), 'button_group' => 'FLUIDTEMPLATE', 'button_group.' => array('templateName' => 'Buttongroup', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '271.' => array('colPos' => '271', 'as' => 'col_271'))), 'background_wrapper' => 'FLUIDTEMPLATE', 'background_wrapper.' => array('templateName' => 'BackgroundWrapper', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '273.' => array('colPos' => '273', 'as' => 'col_273'))), 'parallax_wrapper' => 'FLUIDTEMPLATE', 'parallax_wrapper.' => array('templateName' => 'ParallaxWrapper', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '274.' => array('colPos' => '274', 'as' => 'col_274'))), 'autoLayout_row' => 'FLUIDTEMPLATE', 'autoLayout_row.' => array('templateName' => 'AutoLayoutRow', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '272.' => array('colPos' => '272', 'as' => 'col_272'))), 'container' => 'FLUIDTEMPLATE', 'container.' => array('templateName' => 'Container', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '275.' => array('colPos' => '275', 'as' => 'col_275'))), 'carousel_container' => 'FLUIDTEMPLATE', 'carousel_container.' => array('templateName' => 'CarouselContainer', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '276.' => array('colPos' => '276', 'as' => 'col_276'))), 'collapsible_container' => 'FLUIDTEMPLATE', 'collapsible_container.' => array('templateName' => 'CollapsibleContainer', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '277.' => array('colPos' => '277', 'as' => 'col_277'))), 'collapsible_accordion' => 'FLUIDTEMPLATE', 'collapsible_accordion.' => array('templateName' => 'Collapsible', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '278.' => array('colPos' => '278', 'as' => 'col_278'))), 'modal' => 'FLUIDTEMPLATE', 'modal.' => array('templateName' => 'Modal', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '279.' => array('colPos' => '279', 'as' => 'col_279'))), 'tabs_container' => 'FLUIDTEMPLATE', 'tabs_container.' => array('templateName' => 'TabContainer', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '280.' => array('colPos' => '280', 'as' => 'col_280'))), 'tabs_tab' => 'FLUIDTEMPLATE', 'tabs_tab.' => array('templateName' => 'Tab', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '281.' => array('colPos' => '281', 'as' => 'col_281'))), 'listGroup_wrapper' => 'FLUIDTEMPLATE', 'listGroup_wrapper.' => array('templateName' => 'ListGroupWrapper', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '282.' => array('colPos' => '282', 'as' => 'col_282'))), 'masonry_wrapper' => 'FLUIDTEMPLATE', 'masonry_wrapper.' => array('templateName' => 'MasonryWrapper', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '283.' => array('colPos' => '283', 'as' => 'col_283'))), 'swiper_container' => 'FLUIDTEMPLATE', 'swiper_container.' => array('templateName' => 'SwiperContainer', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '300.' => array('colPos' => '300', 'as' => 'col_300'))), 'toast_container' => 'FLUIDTEMPLATE', 'toast_container.' => array('templateName' => 'ToastContainer', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '310.' => array('colPos' => '310', 'as' => 'col_310'))), 'counter_counter' => '< lib.contentElement', 'counter_counter.' => array('templateName' => 'Counter', 'settings.' => array('counter.' => array('start' => '0', 'end' => '100', 'duration' => '5000', 'delay' => '0', 'lazyStart' => '1', 'startEffect' => 'none', 'startEffectDuration' => '500', 'easing' => 'linear', 'title' => '', 'description' => ''))), 'iconcontent_iconcontent' => '< lib.contentElement', 'iconcontent_iconcontent.' => array('templateName' => 'IconContent', 'settings.' => array('iconcontent.' => array('icon' => '', 'link' => '', 'size' => '', 'color' => '', 'animation' => '', 'rotate' => '')))))
in /html/typo3/typo3_src-10.4.37/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 829
        }

        // 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(object(TYPO3\CMS\Frontend\ContentObject\CaseContentObject), array('key.' => array('field' => 'CType'), 'default' => 'TEXT', 'default.' => array('field' => 'CType', 'htmlSpecialChars' => '1', 'wrap' => '<p style="background-color: yellow; padding: 0.5em 1em;"><strong>ERROR:</strong> Content Element with uid "{field:uid}" and type "|" has no rendering definition!</p>', 'wrap.' => array('insertData' => '1')), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1'))), 'bullets' => '< lib.contentElement', 'bullets.' => array('templateName' => 'Bullets', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('if.' => array('value' => '5', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '20.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '5', 'equals.' => array('field' => 'bullets_type')), 'fieldDelimiter' => '|', 'as' => 'bullets')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext [bullets_type]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.bullets')))), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout|header_link], subheader, date', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.header')))), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2560', 'minimumWidth' => '1', 'ratioWithHeight' => '1', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '23')), 'stdWrap.' => array('editIcons' => 'tt_content : image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.image')))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('focuspoint_test' => 'USER', 'focuspoint_test.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Focuspoint', 'pluginName' => 'Test'), 'rxshariff_shariff' => 'USER', 'rxshariff_shariff.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'RxShariff', 'pluginName' => 'Shariff'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'newsslider_pi1' => 'USER', 'newsslider_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Newsslider', 'pluginName' => 'Pi1'), 'dpcookieconsent_pi1' => 'USER', 'dpcookieconsent_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DpCookieconsent', 'pluginName' => 'Pi1'), 'dpcookieconsent_pi2' => 'USER', 'dpcookieconsent_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DpCookieconsent', 'pluginName' => 'Pi2'), 'fpfractionslider_pi1' => 'USER', 'fpfractionslider_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'FpFractionslider', 'pluginName' => 'Pi1'), 'gomapsext_show' => 'USER', 'gomapsext_show.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'GoMapsExt', 'pluginName' => 'Show'), 'instagram_pi1' => 'USER', 'instagram_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Instagram', 'pluginName' => 'Pi1'), 'maps2_maps2' => 'USER', 'maps2_maps2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Maps2', 'pluginName' => 'Maps2'), 'maps2_searchwithinradius' => 'USER', 'maps2_searchwithinradius.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Maps2', 'pluginName' => 'SearchWithinRadius'), 'maps2_citymap' => 'USER', 'maps2_citymap.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Maps2', 'pluginName' => 'CityMap'), 'showcase_list' => 'USER', 'showcase_list.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Showcase', 'pluginName' => 'List'), 'showcase_slider' => 'USER', 'showcase_slider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Showcase', 'pluginName' => 'Slider'), 'showcase_show' => 'USER', 'showcase_show.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Showcase', 'pluginName' => 'Show'), 'ttaddress_listview' => 'USER', 'ttaddress_listview.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'TtAddress', 'pluginName' => 'ListView'))), 'shortcut' => '< lib.contentElement', 'shortcut.' => array('templateName' => 'Shortcut', 'variables.' => array('shortcuts' => 'RECORDS', 'shortcuts.' => array('source.' => array('field' => 'records'), 'tables' => 'tt_content,tx_news_domain_model_news', 'conf.' => array('tx_news_domain_model_news' => 'USER', 'tx_news_domain_model_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger', 'switchableControllerActions.' => array('News.' => array('detail')), 'settings' => '< plugin.tx_news.settings', 'settings.' => array('singleNews.' => array('field' => 'uid'), 'useStdWrap' => 'singleNews', 'insertRecord' => '1', 'isShortcut' => '1'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], records', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.shortcut'))), '20.' => array('tables' => 'tx_news_domain_model_news', 'conf.' => array('tx_news_domain_model_news' => 'USER', 'tx_news_domain_model_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger', 'switchableControllerActions.' => array('News.' => array('detail')), 'settings' => '< plugin.tx_news.settings', 'settings.' => array('singleNews.' => array('field' => 'uid'), 'useStdWrap' => 'singleNews', 'insertRecord' => '1', 'isShortcut' => '1'))))), 'table' => '< lib.contentElement', 'table.' => array('templateName' => 'Table', 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\CommaSeparatedValueProcessor', '10.' => array('fieldName' => 'bodytext', 'fieldDelimiter.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_delimiter'))), 'fieldEnclosure.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_enclosure')), 'if.' => array('value' => '0', 'equals.' => array('field' => 'table_enclosure'), 'negate' => '1')), 'maximumColumns.' => array('field' => 'cols'), 'as' => 'table')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, [table_caption|cols|table_header_position|table_tfoot]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.table')))), 'text' => '< lib.contentElement', 'text.' => array('templateName' => 'Text', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'textmedia' => '< lib.contentElement', 'textmedia.' => array('templateName' => 'Textmedia', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2560', 'minimumWidth' => '1', 'ratioWithHeight' => '1', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '23')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, assets [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textmedia')))), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'Textpic', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2560', 'minimumWidth' => '1', 'ratioWithHeight' => '1', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '23')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textpic')))), 'uploads' => '< lib.contentElement', 'uploads.' => array('templateName' => 'Uploads', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting', 'direction.' => array('field' => 'filelink_sorting_direction')))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], media, file_collections, filelink_sorting, [filelink_size|uploads_description|uploads_type]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.uploads')))), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_content' => '< lib.contentElement', 'menu_categorized_content.' => array('templateName' => 'MenuCategorizedContent', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tt_content', 'selectFields' => 'tt_content.*', 'groupBy' => 'uid', 'pidInList.' => array('data' => 'leveluid : 0'), 'recursive' => '99', 'join.' => array('data' => 'field:selected_categories', 'wrap' => 'sys_category_record_mm ON uid = sys_category_record_mm.uid_foreign AND sys_category_record_mm.uid_local IN(|)'), 'where.' => array('data' => 'field:category_field', 'wrap' => 'tablenames=\'tt_content\' and fieldname=\'|\''), 'orderBy' => 'tt_content.sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_pages' => '< lib.contentElement', 'menu_categorized_pages.' => array('templateName' => 'MenuCategorizedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'categories', 'special.' => array('value.' => array('field' => 'selected_categories'), 'relation.' => array('field' => 'category_field'), 'sorting' => 'title', 'order' => 'asc'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_pages' => '< lib.contentElement', 'menu_pages.' => array('templateName' => 'MenuPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_subpages' => '< lib.contentElement', 'menu_subpages.' => array('templateName' => 'MenuSubpages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu'))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages'))))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'as' => 'content', 'where' => 'sectionIndex = 1 AND ( colPos = 0 OR colPos > 199 )', 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')))))))), 'menu_section_pages' => '< lib.contentElement', 'menu_section_pages.' => array('templateName' => 'MenuSectionPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'orderBy' => 'sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_recently_updated' => '< lib.contentElement', 'menu_recently_updated.' => array('templateName' => 'MenuRecentlyUpdated', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'updated', 'special.' => array('value.' => array('field' => 'pages'), 'maxAge' => '3600*24*7', 'excludeNoSearchPages' => '1'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_related_pages' => '< lib.contentElement', 'menu_related_pages.' => array('templateName' => 'MenuRelatedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'keywords', 'special.' => array('value.' => array('field' => 'pages'), 'excludeNoSearchPages' => '1'), 'alternativeSortingField' => 'title', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap' => '< lib.contentElement', 'menu_sitemap.' => array('templateName' => 'MenuSitemap', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap_pages' => '< lib.contentElement', 'menu_sitemap_pages.' => array('templateName' => 'MenuSitemapPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'form_formframework' => '< lib.contentElement', 'form_formframework.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Form', 'pluginName' => 'Formframework')), 'felogin_login' => '< lib.contentElement', 'felogin_login.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Felogin', 'pluginName' => 'Login')), 't3sbs_fluidtemplate' => 'COA', 't3sbs_fluidtemplate.' => array('FLUIDTEMPLATE', '10.' => array('file.' => array('stdWrap.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'subheader', 'ifEmpty.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => 'EXT:t3sbootstrap/Resources/Private/Templates/Content/FluidTemplate.html'))))), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'settings.' => array('expandedContent' => '0', 'fontawesome.' => array('pagetitle' => '1'), 'codesnippet' => '0', 'lazyLoad' => '0', 'lazyLoadThreshold' => '0', 'webp' => '0', 'pagebrowser.' => array('enable' => '0'), 'backToTopTitle' => 'to top', 'backToTopClass' => 'fa fa-chevron-circle-up fa-4x text-dark', 'backToTopForAllPages' => '0', 'gtm' => '', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'sectionmenuIcons' => '0', 'navbar.' => array('image.' => array('defaultPath' => '/typo3conf/ext/t3sbootstrap/Resources/Public/Images/bootstrap-logo-white.svg', 'width' => '300', 'height' => '50', 'altText' => 'Company Logo'), 'subdropdown.' => array('twoColumns' => '30'), 'searchboxLink' => '0', 'feUserName' => '0', 'sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400'), 'pages.' => array('override.' => array('smallColumns' => '', 'breakpoint' => '')), 'config.' => array('uid' => '23', 'company' => 'pixelegg', 'homepageUid' => '1', 'pageTitle' => '0', 'pageTitlealign' => 'center', 'pageTitlecontainer' => 'container', 'pageTitleclass' => 'mb-3', 'metaEnable' => 'end', 'metaValue' => '13', 'metaContainer' => 'container', 'metaClass' => '0', 'metaText' => '<a class="p-2" href="tel:+49"><i class="fas fa-phone mr-1"></i> jetzt anrufen </a>', 'navbarEnable' => 'light', 'navbarEntrylevel' => '0', 'navbarLevels' => '4', 'navbarExcludeuiduist' => '0', 'navbarIncludespacer' => '0', 'navbarSectionmenu' => '0', 'navbarMegamenu' => '1', 'navbarHover' => '0', 'navbarClickableparent' => '1', 'navbarPlusicon' => '{$bootstrap.config.navbarPlusicon}', 'navbarDropdownAnimate' => '0', 'navbarBrand' => 'image', 'navbarbrandAlignment' => 'left', 'navbarImage' => '/fileadmin/setup/images/logo/logo.svg', 'navbarColor' => 'white', 'navbarBackground' => '0', 'navbarTransparent' => '0', 'navbarContainer' => '0', 'navbarInnercontainer' => 'container', 'navbarPlacement' => '0', 'navbarAlignment' => 'right', 'navbarClass' => '0', 'navbarToggler' => 'right', 'navbarAnimatedtoggler' => '0', 'navbarBreakpoint' => 'xl', 'navbarOffcanvas' => '1', 'navbarHeight' => '0', 'navbarSearchbox' => '0', 'navbarLangmenu' => '0', 'navbarShrinkcolorschemes' => 'white', 'navbarShrinkcolor' => 'dark', 'navbarRightMenuUidList' => '0', 'navbarExtraRow' => '0', 'navbarLangFlags' => '1', 'jumbotronEnable' => '1', 'jumbotronBgimage' => 'root', 'jumbotronSlide' => '0', 'jumbotronPosition' => 'below', 'jumbotronContainer' => 'none', 'jumbotronContainerposition' => 'Inside', 'jumbotronClass' => 'm-0 p-0', 'jumbotronCarouselInterval' => '500', 'jumbotronCarouselPause' => '', 'breadcrumbEnable' => '0', 'breadcrumbNotonrootpage' => '1', 'breadcrumbFaicon' => '1', 'breadcrumbCorner' => '0', 'breadcrumbBottom' => '0', 'breadcrumbPosition' => 'belowJum', 'breadcrumbContainer' => 'container', 'breadcrumbContainerposition' => 'inside', 'breadcrumbClass' => '0', 'sidebarEnable' => 'Sub', 'sidebarRightenable' => '0', 'sidebarLevels' => '4', 'sidebarEntrylevel' => '1', 'sidebarExcludeuiduist' => '0', 'sidebarIncludespacer' => '0', 'sidebarSectionMobile' => '0', 'footerEnable' => '1', 'footerFluid' => '{$bootstrap.config.footerFluid}', 'footerSlide' => '1', 'footerSticky' => '0', 'footerContainer' => 'container', 'footerContainerposition' => 'Inside', 'footerClass' => 'bg-dark text-white border-top border-dark', 'footerPid' => '6', 'expandedcontentEnabletop' => '0', 'expandedcontentSlidetop' => '0', 'expandedcontentContainerpositiontop' => 'Inside', 'expandedcontentContainertop' => 'none', 'expandedcontentClasstop' => '0', 'expandedcontentEnablebottom' => '1', 'expandedcontentSlidebottom' => '0', 'expandedcontentContainerpositionbottom' => 'Inside', 'expandedcontentContainerbottom' => 'none', 'expandedcontentClassbottom' => '0', 'generalRootline' => '1', 'contentOnlyOnRootpage' => '0', 'jqueryHeader' => '1', 'compress' => '0', 'disablePrefixComment' => '1', 'containerError' => '0', 'slideLeftAside' => '0', 'slideRightAside' => '0', 'pageContentExtraClass' => '0', 'bodyExtraClass' => '0', 'asideExtraClass' => '0', 'mainExtraClass' => '0', 'globalPaddingTop' => '0', 'stickyFooterExtraPadding' => '0', 'contentMarginTop' => '0', 'loadingSpinner' => '0', 'loadingSpinnerColor' => 'primary', 'lightboxSelection' => '2', 'magnifying' => '1', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sectionmenuStickyTop' => '0', 'backgroundImageEnable' => '0', 'backgroundImageSlide' => '0', 'shrinkingNavPadding' => '5', 'sidebarMenuPosition' => 'above', 'langMenuWithFaIcon' => '1', 'subheaderColor' => 'secondary', 'dateFormat' => 'd.m.Y', 'favicon' => '0', 'faLinkIcons' => '1', 'cardFlipperOnClick' => '0', 'lastModifiedContentElement' => '0', 'recentlyUpdatedContentElements' => '0'), 'indexedsearch.' => array('targetPid' => '0')))), 't3sbs_button' => '< lib.contentElement', 't3sbs_button.' => array('templateName' => 'Button', 'stdWrap.' => array('editIcons' => 'tt_content')), 't3sbs_card' => '< lib.contentElement', 't3sbs_card.' => array('templateName' => 'Card', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2560', 'minimumWidth' => '1', 'ratioWithHeight' => '1', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'overrideSmallColumns' => '', 'configuid' => '{$bootstrap.db.uid}'), 'T3SBS\\T3sbootstrap\\DataProcessing\\CardProcessor'), 'stdWrap.' => array('editIcons' => 'tt_content')), 't3sbs_carousel' => '< lib.contentElement', 't3sbs_carousel.' => array('templateName' => 'Carousel', 'settings.' => array('defaultHeaderType' => '3'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets'))), 'stdWrap.' => array('editIcons' => 'tt_content')), 't3sbs_mediaobject' => '< lib.contentElement', 't3sbs_mediaobject.' => array('templateName' => 'Mediaobject', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2560', 'minimumWidth' => '1', 'ratioWithHeight' => '1', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '{$bootstrap.db.uid}')), 'stdWrap.' => array('editIcons' => 'tt_content')), 't3sbs_gallery' => '< lib.contentElement', 't3sbs_gallery.' => array('templateName' => 'ImageGallery', 'settings.' => array('defaultHeaderType' => '2'), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\BsImageGalleryProcessor', '10.' => array('references.' => array('fieldName' => 'assets'), 'as' => 'files', 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2560', 'minimumWidth' => '1', 'ratioWithHeight' => '1', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '{$bootstrap.db.uid}')), 'stdWrap.' => array('editIcons' => 'tt_content')), 't3sbs_toast' => '< lib.contentElement', 't3sbs_toast.' => array('templateName' => 'Toast', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2560', 'minimumWidth' => '1', 'ratioWithHeight' => '1', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '{$bootstrap.db.uid}')), 'stdWrap.' => array('editIcons' => 'tt_content')), 'two_columns' => 'FLUIDTEMPLATE', 'two_columns.' => array('templateName' => 'TwoColumns', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '221.' => array('colPos' => '221', 'as' => 'col_221'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '222.' => array('colPos' => '222', 'as' => 'col_222'))), 'three_columns' => 'FLUIDTEMPLATE', 'three_columns.' => array('templateName' => 'ThreeColumns', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '231.' => array('colPos' => '231', 'as' => 'col_231'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '232.' => array('colPos' => '232', 'as' => 'col_232'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '233.' => array('colPos' => '233', 'as' => 'col_233'))), 'four_columns' => 'FLUIDTEMPLATE', 'four_columns.' => array('templateName' => 'FourColumns', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '241.' => array('colPos' => '241', 'as' => 'col_241'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '242.' => array('colPos' => '242', 'as' => 'col_242'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '243.' => array('colPos' => '243', 'as' => 'col_243'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '244.' => array('colPos' => '244', 'as' => 'col_244'))), 'six_columns' => 'FLUIDTEMPLATE', 'six_columns.' => array('templateName' => 'SixColumns', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '241.' => array('colPos' => '261', 'as' => 'col_261'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '242.' => array('colPos' => '262', 'as' => 'col_262'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '243.' => array('colPos' => '263', 'as' => 'col_263'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '244.' => array('colPos' => '264', 'as' => 'col_264'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '245.' => array('colPos' => '265', 'as' => 'col_265'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '246.' => array('colPos' => '266', 'as' => 'col_266'))), 'card_wrapper' => 'FLUIDTEMPLATE', 'card_wrapper.' => array('templateName' => 'CardWrapper', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '270.' => array('colPos' => '270', 'as' => 'col_270'))), 'button_group' => 'FLUIDTEMPLATE', 'button_group.' => array('templateName' => 'Buttongroup', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '271.' => array('colPos' => '271', 'as' => 'col_271'))), 'background_wrapper' => 'FLUIDTEMPLATE', 'background_wrapper.' => array('templateName' => 'BackgroundWrapper', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '273.' => array('colPos' => '273', 'as' => 'col_273'))), 'parallax_wrapper' => 'FLUIDTEMPLATE', 'parallax_wrapper.' => array('templateName' => 'ParallaxWrapper', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '274.' => array('colPos' => '274', 'as' => 'col_274'))), 'autoLayout_row' => 'FLUIDTEMPLATE', 'autoLayout_row.' => array('templateName' => 'AutoLayoutRow', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '272.' => array('colPos' => '272', 'as' => 'col_272'))), 'container' => 'FLUIDTEMPLATE', 'container.' => array('templateName' => 'Container', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '275.' => array('colPos' => '275', 'as' => 'col_275'))), 'carousel_container' => 'FLUIDTEMPLATE', 'carousel_container.' => array('templateName' => 'CarouselContainer', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '276.' => array('colPos' => '276', 'as' => 'col_276'))), 'collapsible_container' => 'FLUIDTEMPLATE', 'collapsible_container.' => array('templateName' => 'CollapsibleContainer', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '277.' => array('colPos' => '277', 'as' => 'col_277'))), 'collapsible_accordion' => 'FLUIDTEMPLATE', 'collapsible_accordion.' => array('templateName' => 'Collapsible', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '278.' => array('colPos' => '278', 'as' => 'col_278'))), 'modal' => 'FLUIDTEMPLATE', 'modal.' => array('templateName' => 'Modal', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '279.' => array('colPos' => '279', 'as' => 'col_279'))), 'tabs_container' => 'FLUIDTEMPLATE', 'tabs_container.' => array('templateName' => 'TabContainer', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '280.' => array('colPos' => '280', 'as' => 'col_280'))), 'tabs_tab' => 'FLUIDTEMPLATE', 'tabs_tab.' => array('templateName' => 'Tab', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '281.' => array('colPos' => '281', 'as' => 'col_281'))), 'listGroup_wrapper' => 'FLUIDTEMPLATE', 'listGroup_wrapper.' => array('templateName' => 'ListGroupWrapper', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '282.' => array('colPos' => '282', 'as' => 'col_282'))), 'masonry_wrapper' => 'FLUIDTEMPLATE', 'masonry_wrapper.' => array('templateName' => 'MasonryWrapper', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '283.' => array('colPos' => '283', 'as' => 'col_283'))), 'swiper_container' => 'FLUIDTEMPLATE', 'swiper_container.' => array('templateName' => 'SwiperContainer', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '300.' => array('colPos' => '300', 'as' => 'col_300'))), 'toast_container' => 'FLUIDTEMPLATE', 'toast_container.' => array('templateName' => 'ToastContainer', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '310.' => array('colPos' => '310', 'as' => 'col_310'))), 'counter_counter' => '< lib.contentElement', 'counter_counter.' => array('templateName' => 'Counter', 'settings.' => array('counter.' => array('start' => '0', 'end' => '100', 'duration' => '5000', 'delay' => '0', 'lazyStart' => '1', 'startEffect' => 'none', 'startEffectDuration' => '500', 'easing' => 'linear', 'title' => '', 'description' => ''))), 'iconcontent_iconcontent' => '< lib.contentElement', 'iconcontent_iconcontent.' => array('templateName' => 'IconContent', 'settings.' => array('iconcontent.' => array('icon' => '', 'link' => '', 'size' => '', 'color' => '', 'animation' => '', 'rotate' => '')))))
in /html/typo3/typo3_src-10.4.37/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 743
                }
                if (!$hooked) {
                    $contentObject = $this->getContentObject($name);
                    if ($contentObject) {
                        $content .= $this->render($contentObject, $conf);
                    } else {
                        // Call hook functions for extra processing
                        if ($name) {
                            if (!empty($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['cObjTypeAndClassDefault'])) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('CASE', array('key.' => array('field' => 'CType'), 'default' => 'TEXT', 'default.' => array('field' => 'CType', 'htmlSpecialChars' => '1', 'wrap' => '<p style="background-color: yellow; padding: 0.5em 1em;"><strong>ERROR:</strong> Content Element with uid "{field:uid}" and type "|" has no rendering definition!</p>', 'wrap.' => array('insertData' => '1')), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1'))), 'bullets' => '< lib.contentElement', 'bullets.' => array('templateName' => 'Bullets', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('if.' => array('value' => '5', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '20.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '5', 'equals.' => array('field' => 'bullets_type')), 'fieldDelimiter' => '|', 'as' => 'bullets')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext [bullets_type]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.bullets')))), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout|header_link], subheader, date', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.header')))), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2560', 'minimumWidth' => '1', 'ratioWithHeight' => '1', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '23')), 'stdWrap.' => array('editIcons' => 'tt_content : image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.image')))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('focuspoint_test' => 'USER', 'focuspoint_test.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Focuspoint', 'pluginName' => 'Test'), 'rxshariff_shariff' => 'USER', 'rxshariff_shariff.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'RxShariff', 'pluginName' => 'Shariff'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'newsslider_pi1' => 'USER', 'newsslider_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Newsslider', 'pluginName' => 'Pi1'), 'dpcookieconsent_pi1' => 'USER', 'dpcookieconsent_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DpCookieconsent', 'pluginName' => 'Pi1'), 'dpcookieconsent_pi2' => 'USER', 'dpcookieconsent_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DpCookieconsent', 'pluginName' => 'Pi2'), 'fpfractionslider_pi1' => 'USER', 'fpfractionslider_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'FpFractionslider', 'pluginName' => 'Pi1'), 'gomapsext_show' => 'USER', 'gomapsext_show.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'GoMapsExt', 'pluginName' => 'Show'), 'instagram_pi1' => 'USER', 'instagram_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Instagram', 'pluginName' => 'Pi1'), 'maps2_maps2' => 'USER', 'maps2_maps2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Maps2', 'pluginName' => 'Maps2'), 'maps2_searchwithinradius' => 'USER', 'maps2_searchwithinradius.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Maps2', 'pluginName' => 'SearchWithinRadius'), 'maps2_citymap' => 'USER', 'maps2_citymap.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Maps2', 'pluginName' => 'CityMap'), 'showcase_list' => 'USER', 'showcase_list.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Showcase', 'pluginName' => 'List'), 'showcase_slider' => 'USER', 'showcase_slider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Showcase', 'pluginName' => 'Slider'), 'showcase_show' => 'USER', 'showcase_show.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Showcase', 'pluginName' => 'Show'), 'ttaddress_listview' => 'USER', 'ttaddress_listview.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'TtAddress', 'pluginName' => 'ListView'))), 'shortcut' => '< lib.contentElement', 'shortcut.' => array('templateName' => 'Shortcut', 'variables.' => array('shortcuts' => 'RECORDS', 'shortcuts.' => array('source.' => array('field' => 'records'), 'tables' => 'tt_content,tx_news_domain_model_news', 'conf.' => array('tx_news_domain_model_news' => 'USER', 'tx_news_domain_model_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger', 'switchableControllerActions.' => array('News.' => array('detail')), 'settings' => '< plugin.tx_news.settings', 'settings.' => array('singleNews.' => array('field' => 'uid'), 'useStdWrap' => 'singleNews', 'insertRecord' => '1', 'isShortcut' => '1'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], records', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.shortcut'))), '20.' => array('tables' => 'tx_news_domain_model_news', 'conf.' => array('tx_news_domain_model_news' => 'USER', 'tx_news_domain_model_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger', 'switchableControllerActions.' => array('News.' => array('detail')), 'settings' => '< plugin.tx_news.settings', 'settings.' => array('singleNews.' => array('field' => 'uid'), 'useStdWrap' => 'singleNews', 'insertRecord' => '1', 'isShortcut' => '1'))))), 'table' => '< lib.contentElement', 'table.' => array('templateName' => 'Table', 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\CommaSeparatedValueProcessor', '10.' => array('fieldName' => 'bodytext', 'fieldDelimiter.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_delimiter'))), 'fieldEnclosure.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_enclosure')), 'if.' => array('value' => '0', 'equals.' => array('field' => 'table_enclosure'), 'negate' => '1')), 'maximumColumns.' => array('field' => 'cols'), 'as' => 'table')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, [table_caption|cols|table_header_position|table_tfoot]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.table')))), 'text' => '< lib.contentElement', 'text.' => array('templateName' => 'Text', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'textmedia' => '< lib.contentElement', 'textmedia.' => array('templateName' => 'Textmedia', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2560', 'minimumWidth' => '1', 'ratioWithHeight' => '1', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '23')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, assets [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textmedia')))), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'Textpic', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2560', 'minimumWidth' => '1', 'ratioWithHeight' => '1', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '23')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textpic')))), 'uploads' => '< lib.contentElement', 'uploads.' => array('templateName' => 'Uploads', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting', 'direction.' => array('field' => 'filelink_sorting_direction')))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], media, file_collections, filelink_sorting, [filelink_size|uploads_description|uploads_type]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.uploads')))), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_content' => '< lib.contentElement', 'menu_categorized_content.' => array('templateName' => 'MenuCategorizedContent', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tt_content', 'selectFields' => 'tt_content.*', 'groupBy' => 'uid', 'pidInList.' => array('data' => 'leveluid : 0'), 'recursive' => '99', 'join.' => array('data' => 'field:selected_categories', 'wrap' => 'sys_category_record_mm ON uid = sys_category_record_mm.uid_foreign AND sys_category_record_mm.uid_local IN(|)'), 'where.' => array('data' => 'field:category_field', 'wrap' => 'tablenames=\'tt_content\' and fieldname=\'|\''), 'orderBy' => 'tt_content.sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_pages' => '< lib.contentElement', 'menu_categorized_pages.' => array('templateName' => 'MenuCategorizedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'categories', 'special.' => array('value.' => array('field' => 'selected_categories'), 'relation.' => array('field' => 'category_field'), 'sorting' => 'title', 'order' => 'asc'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_pages' => '< lib.contentElement', 'menu_pages.' => array('templateName' => 'MenuPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_subpages' => '< lib.contentElement', 'menu_subpages.' => array('templateName' => 'MenuSubpages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu'))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages'))))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'as' => 'content', 'where' => 'sectionIndex = 1 AND ( colPos = 0 OR colPos > 199 )', 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')))))))), 'menu_section_pages' => '< lib.contentElement', 'menu_section_pages.' => array('templateName' => 'MenuSectionPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'orderBy' => 'sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_recently_updated' => '< lib.contentElement', 'menu_recently_updated.' => array('templateName' => 'MenuRecentlyUpdated', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'updated', 'special.' => array('value.' => array('field' => 'pages'), 'maxAge' => '3600*24*7', 'excludeNoSearchPages' => '1'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_related_pages' => '< lib.contentElement', 'menu_related_pages.' => array('templateName' => 'MenuRelatedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'keywords', 'special.' => array('value.' => array('field' => 'pages'), 'excludeNoSearchPages' => '1'), 'alternativeSortingField' => 'title', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap' => '< lib.contentElement', 'menu_sitemap.' => array('templateName' => 'MenuSitemap', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap_pages' => '< lib.contentElement', 'menu_sitemap_pages.' => array('templateName' => 'MenuSitemapPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'form_formframework' => '< lib.contentElement', 'form_formframework.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Form', 'pluginName' => 'Formframework')), 'felogin_login' => '< lib.contentElement', 'felogin_login.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Felogin', 'pluginName' => 'Login')), 't3sbs_fluidtemplate' => 'COA', 't3sbs_fluidtemplate.' => array('FLUIDTEMPLATE', '10.' => array('file.' => array('stdWrap.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'subheader', 'ifEmpty.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => 'EXT:t3sbootstrap/Resources/Private/Templates/Content/FluidTemplate.html'))))), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'settings.' => array('expandedContent' => '0', 'fontawesome.' => array('pagetitle' => '1'), 'codesnippet' => '0', 'lazyLoad' => '0', 'lazyLoadThreshold' => '0', 'webp' => '0', 'pagebrowser.' => array('enable' => '0'), 'backToTopTitle' => 'to top', 'backToTopClass' => 'fa fa-chevron-circle-up fa-4x text-dark', 'backToTopForAllPages' => '0', 'gtm' => '', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'sectionmenuIcons' => '0', 'navbar.' => array('image.' => array('defaultPath' => '/typo3conf/ext/t3sbootstrap/Resources/Public/Images/bootstrap-logo-white.svg', 'width' => '300', 'height' => '50', 'altText' => 'Company Logo'), 'subdropdown.' => array('twoColumns' => '30'), 'searchboxLink' => '0', 'feUserName' => '0', 'sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400'), 'pages.' => array('override.' => array('smallColumns' => '', 'breakpoint' => '')), 'config.' => array('uid' => '23', 'company' => 'pixelegg', 'homepageUid' => '1', 'pageTitle' => '0', 'pageTitlealign' => 'center', 'pageTitlecontainer' => 'container', 'pageTitleclass' => 'mb-3', 'metaEnable' => 'end', 'metaValue' => '13', 'metaContainer' => 'container', 'metaClass' => '0', 'metaText' => '<a class="p-2" href="tel:+49"><i class="fas fa-phone mr-1"></i> jetzt anrufen </a>', 'navbarEnable' => 'light', 'navbarEntrylevel' => '0', 'navbarLevels' => '4', 'navbarExcludeuiduist' => '0', 'navbarIncludespacer' => '0', 'navbarSectionmenu' => '0', 'navbarMegamenu' => '1', 'navbarHover' => '0', 'navbarClickableparent' => '1', 'navbarPlusicon' => '{$bootstrap.config.navbarPlusicon}', 'navbarDropdownAnimate' => '0', 'navbarBrand' => 'image', 'navbarbrandAlignment' => 'left', 'navbarImage' => '/fileadmin/setup/images/logo/logo.svg', 'navbarColor' => 'white', 'navbarBackground' => '0', 'navbarTransparent' => '0', 'navbarContainer' => '0', 'navbarInnercontainer' => 'container', 'navbarPlacement' => '0', 'navbarAlignment' => 'right', 'navbarClass' => '0', 'navbarToggler' => 'right', 'navbarAnimatedtoggler' => '0', 'navbarBreakpoint' => 'xl', 'navbarOffcanvas' => '1', 'navbarHeight' => '0', 'navbarSearchbox' => '0', 'navbarLangmenu' => '0', 'navbarShrinkcolorschemes' => 'white', 'navbarShrinkcolor' => 'dark', 'navbarRightMenuUidList' => '0', 'navbarExtraRow' => '0', 'navbarLangFlags' => '1', 'jumbotronEnable' => '1', 'jumbotronBgimage' => 'root', 'jumbotronSlide' => '0', 'jumbotronPosition' => 'below', 'jumbotronContainer' => 'none', 'jumbotronContainerposition' => 'Inside', 'jumbotronClass' => 'm-0 p-0', 'jumbotronCarouselInterval' => '500', 'jumbotronCarouselPause' => '', 'breadcrumbEnable' => '0', 'breadcrumbNotonrootpage' => '1', 'breadcrumbFaicon' => '1', 'breadcrumbCorner' => '0', 'breadcrumbBottom' => '0', 'breadcrumbPosition' => 'belowJum', 'breadcrumbContainer' => 'container', 'breadcrumbContainerposition' => 'inside', 'breadcrumbClass' => '0', 'sidebarEnable' => 'Sub', 'sidebarRightenable' => '0', 'sidebarLevels' => '4', 'sidebarEntrylevel' => '1', 'sidebarExcludeuiduist' => '0', 'sidebarIncludespacer' => '0', 'sidebarSectionMobile' => '0', 'footerEnable' => '1', 'footerFluid' => '{$bootstrap.config.footerFluid}', 'footerSlide' => '1', 'footerSticky' => '0', 'footerContainer' => 'container', 'footerContainerposition' => 'Inside', 'footerClass' => 'bg-dark text-white border-top border-dark', 'footerPid' => '6', 'expandedcontentEnabletop' => '0', 'expandedcontentSlidetop' => '0', 'expandedcontentContainerpositiontop' => 'Inside', 'expandedcontentContainertop' => 'none', 'expandedcontentClasstop' => '0', 'expandedcontentEnablebottom' => '1', 'expandedcontentSlidebottom' => '0', 'expandedcontentContainerpositionbottom' => 'Inside', 'expandedcontentContainerbottom' => 'none', 'expandedcontentClassbottom' => '0', 'generalRootline' => '1', 'contentOnlyOnRootpage' => '0', 'jqueryHeader' => '1', 'compress' => '0', 'disablePrefixComment' => '1', 'containerError' => '0', 'slideLeftAside' => '0', 'slideRightAside' => '0', 'pageContentExtraClass' => '0', 'bodyExtraClass' => '0', 'asideExtraClass' => '0', 'mainExtraClass' => '0', 'globalPaddingTop' => '0', 'stickyFooterExtraPadding' => '0', 'contentMarginTop' => '0', 'loadingSpinner' => '0', 'loadingSpinnerColor' => 'primary', 'lightboxSelection' => '2', 'magnifying' => '1', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sectionmenuStickyTop' => '0', 'backgroundImageEnable' => '0', 'backgroundImageSlide' => '0', 'shrinkingNavPadding' => '5', 'sidebarMenuPosition' => 'above', 'langMenuWithFaIcon' => '1', 'subheaderColor' => 'secondary', 'dateFormat' => 'd.m.Y', 'favicon' => '0', 'faLinkIcons' => '1', 'cardFlipperOnClick' => '0', 'lastModifiedContentElement' => '0', 'recentlyUpdatedContentElements' => '0'), 'indexedsearch.' => array('targetPid' => '0')))), 't3sbs_button' => '< lib.contentElement', 't3sbs_button.' => array('templateName' => 'Button', 'stdWrap.' => array('editIcons' => 'tt_content')), 't3sbs_card' => '< lib.contentElement', 't3sbs_card.' => array('templateName' => 'Card', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2560', 'minimumWidth' => '1', 'ratioWithHeight' => '1', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'overrideSmallColumns' => '', 'configuid' => '{$bootstrap.db.uid}'), 'T3SBS\\T3sbootstrap\\DataProcessing\\CardProcessor'), 'stdWrap.' => array('editIcons' => 'tt_content')), 't3sbs_carousel' => '< lib.contentElement', 't3sbs_carousel.' => array('templateName' => 'Carousel', 'settings.' => array('defaultHeaderType' => '3'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets'))), 'stdWrap.' => array('editIcons' => 'tt_content')), 't3sbs_mediaobject' => '< lib.contentElement', 't3sbs_mediaobject.' => array('templateName' => 'Mediaobject', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2560', 'minimumWidth' => '1', 'ratioWithHeight' => '1', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '{$bootstrap.db.uid}')), 'stdWrap.' => array('editIcons' => 'tt_content')), 't3sbs_gallery' => '< lib.contentElement', 't3sbs_gallery.' => array('templateName' => 'ImageGallery', 'settings.' => array('defaultHeaderType' => '2'), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\BsImageGalleryProcessor', '10.' => array('references.' => array('fieldName' => 'assets'), 'as' => 'files', 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2560', 'minimumWidth' => '1', 'ratioWithHeight' => '1', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '{$bootstrap.db.uid}')), 'stdWrap.' => array('editIcons' => 'tt_content')), 't3sbs_toast' => '< lib.contentElement', 't3sbs_toast.' => array('templateName' => 'Toast', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2560', 'minimumWidth' => '1', 'ratioWithHeight' => '1', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '{$bootstrap.db.uid}')), 'stdWrap.' => array('editIcons' => 'tt_content')), 'two_columns' => 'FLUIDTEMPLATE', 'two_columns.' => array('templateName' => 'TwoColumns', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '221.' => array('colPos' => '221', 'as' => 'col_221'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '222.' => array('colPos' => '222', 'as' => 'col_222'))), 'three_columns' => 'FLUIDTEMPLATE', 'three_columns.' => array('templateName' => 'ThreeColumns', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '231.' => array('colPos' => '231', 'as' => 'col_231'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '232.' => array('colPos' => '232', 'as' => 'col_232'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '233.' => array('colPos' => '233', 'as' => 'col_233'))), 'four_columns' => 'FLUIDTEMPLATE', 'four_columns.' => array('templateName' => 'FourColumns', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '241.' => array('colPos' => '241', 'as' => 'col_241'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '242.' => array('colPos' => '242', 'as' => 'col_242'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '243.' => array('colPos' => '243', 'as' => 'col_243'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '244.' => array('colPos' => '244', 'as' => 'col_244'))), 'six_columns' => 'FLUIDTEMPLATE', 'six_columns.' => array('templateName' => 'SixColumns', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '241.' => array('colPos' => '261', 'as' => 'col_261'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '242.' => array('colPos' => '262', 'as' => 'col_262'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '243.' => array('colPos' => '263', 'as' => 'col_263'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '244.' => array('colPos' => '264', 'as' => 'col_264'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '245.' => array('colPos' => '265', 'as' => 'col_265'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '246.' => array('colPos' => '266', 'as' => 'col_266'))), 'card_wrapper' => 'FLUIDTEMPLATE', 'card_wrapper.' => array('templateName' => 'CardWrapper', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '270.' => array('colPos' => '270', 'as' => 'col_270'))), 'button_group' => 'FLUIDTEMPLATE', 'button_group.' => array('templateName' => 'Buttongroup', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '271.' => array('colPos' => '271', 'as' => 'col_271'))), 'background_wrapper' => 'FLUIDTEMPLATE', 'background_wrapper.' => array('templateName' => 'BackgroundWrapper', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '273.' => array('colPos' => '273', 'as' => 'col_273'))), 'parallax_wrapper' => 'FLUIDTEMPLATE', 'parallax_wrapper.' => array('templateName' => 'ParallaxWrapper', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '274.' => array('colPos' => '274', 'as' => 'col_274'))), 'autoLayout_row' => 'FLUIDTEMPLATE', 'autoLayout_row.' => array('templateName' => 'AutoLayoutRow', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '272.' => array('colPos' => '272', 'as' => 'col_272'))), 'container' => 'FLUIDTEMPLATE', 'container.' => array('templateName' => 'Container', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '275.' => array('colPos' => '275', 'as' => 'col_275'))), 'carousel_container' => 'FLUIDTEMPLATE', 'carousel_container.' => array('templateName' => 'CarouselContainer', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '276.' => array('colPos' => '276', 'as' => 'col_276'))), 'collapsible_container' => 'FLUIDTEMPLATE', 'collapsible_container.' => array('templateName' => 'CollapsibleContainer', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '277.' => array('colPos' => '277', 'as' => 'col_277'))), 'collapsible_accordion' => 'FLUIDTEMPLATE', 'collapsible_accordion.' => array('templateName' => 'Collapsible', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '278.' => array('colPos' => '278', 'as' => 'col_278'))), 'modal' => 'FLUIDTEMPLATE', 'modal.' => array('templateName' => 'Modal', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '279.' => array('colPos' => '279', 'as' => 'col_279'))), 'tabs_container' => 'FLUIDTEMPLATE', 'tabs_container.' => array('templateName' => 'TabContainer', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '280.' => array('colPos' => '280', 'as' => 'col_280'))), 'tabs_tab' => 'FLUIDTEMPLATE', 'tabs_tab.' => array('templateName' => 'Tab', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '281.' => array('colPos' => '281', 'as' => 'col_281'))), 'listGroup_wrapper' => 'FLUIDTEMPLATE', 'listGroup_wrapper.' => array('templateName' => 'ListGroupWrapper', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '282.' => array('colPos' => '282', 'as' => 'col_282'))), 'masonry_wrapper' => 'FLUIDTEMPLATE', 'masonry_wrapper.' => array('templateName' => 'MasonryWrapper', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '283.' => array('colPos' => '283', 'as' => 'col_283'))), 'swiper_container' => 'FLUIDTEMPLATE', 'swiper_container.' => array('templateName' => 'SwiperContainer', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '300.' => array('colPos' => '300', 'as' => 'col_300'))), 'toast_container' => 'FLUIDTEMPLATE', 'toast_container.' => array('templateName' => 'ToastContainer', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '310.' => array('colPos' => '310', 'as' => 'col_310'))), 'counter_counter' => '< lib.contentElement', 'counter_counter.' => array('templateName' => 'Counter', 'settings.' => array('counter.' => array('start' => '0', 'end' => '100', 'duration' => '5000', 'delay' => '0', 'lazyStart' => '1', 'startEffect' => 'none', 'startEffectDuration' => '500', 'easing' => 'linear', 'title' => '', 'description' => ''))), 'iconcontent_iconcontent' => '< lib.contentElement', 'iconcontent_iconcontent.' => array('templateName' => 'IconContent', 'settings.' => array('iconcontent.' => array('icon' => '', 'link' => '', 'size' => '', 'color' => '', 'animation' => '', 'rotate' => '')))), 'tt_content')
in /html/typo3/typo3_src-10.4.37/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 724
                [$name, $conf] = $cF->getVal($key, $this->getTypoScriptFrontendController()->tmpl->setup);
                $conf = array_replace_recursive(is_array($conf) ? $conf : [], $confOverride);
                // Getting the cObject
                $timeTracker->incStackPointer();
                $content .= $this->cObjGetSingle($name, $conf, $key);
                $timeTracker->decStackPointer();
            } else {
                $hooked = false;
                // Application defined cObjects
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('CASE', array('key.' => array('field' => 'CType'), 'default' => 'TEXT', 'default.' => array('field' => 'CType', 'htmlSpecialChars' => '1', 'wrap' => '<p style="background-color: yellow; padding: 0.5em 1em;"><strong>ERROR:</strong> Content Element with uid "{field:uid}" and type "|" has no rendering definition!</p>', 'wrap.' => array('insertData' => '1')), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1'))), 'bullets' => '< lib.contentElement', 'bullets.' => array('templateName' => 'Bullets', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('if.' => array('value' => '5', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '20.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '5', 'equals.' => array('field' => 'bullets_type')), 'fieldDelimiter' => '|', 'as' => 'bullets')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext [bullets_type]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.bullets')))), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout|header_link], subheader, date', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.header')))), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2560', 'minimumWidth' => '1', 'ratioWithHeight' => '1', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '23')), 'stdWrap.' => array('editIcons' => 'tt_content : image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.image')))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('focuspoint_test' => 'USER', 'focuspoint_test.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Focuspoint', 'pluginName' => 'Test'), 'rxshariff_shariff' => 'USER', 'rxshariff_shariff.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'RxShariff', 'pluginName' => 'Shariff'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'newsslider_pi1' => 'USER', 'newsslider_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Newsslider', 'pluginName' => 'Pi1'), 'dpcookieconsent_pi1' => 'USER', 'dpcookieconsent_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DpCookieconsent', 'pluginName' => 'Pi1'), 'dpcookieconsent_pi2' => 'USER', 'dpcookieconsent_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DpCookieconsent', 'pluginName' => 'Pi2'), 'fpfractionslider_pi1' => 'USER', 'fpfractionslider_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'FpFractionslider', 'pluginName' => 'Pi1'), 'gomapsext_show' => 'USER', 'gomapsext_show.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'GoMapsExt', 'pluginName' => 'Show'), 'instagram_pi1' => 'USER', 'instagram_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Instagram', 'pluginName' => 'Pi1'), 'maps2_maps2' => 'USER', 'maps2_maps2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Maps2', 'pluginName' => 'Maps2'), 'maps2_searchwithinradius' => 'USER', 'maps2_searchwithinradius.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Maps2', 'pluginName' => 'SearchWithinRadius'), 'maps2_citymap' => 'USER', 'maps2_citymap.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Maps2', 'pluginName' => 'CityMap'), 'showcase_list' => 'USER', 'showcase_list.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Showcase', 'pluginName' => 'List'), 'showcase_slider' => 'USER', 'showcase_slider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Showcase', 'pluginName' => 'Slider'), 'showcase_show' => 'USER', 'showcase_show.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Showcase', 'pluginName' => 'Show'), 'ttaddress_listview' => 'USER', 'ttaddress_listview.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'TtAddress', 'pluginName' => 'ListView'))), 'shortcut' => '< lib.contentElement', 'shortcut.' => array('templateName' => 'Shortcut', 'variables.' => array('shortcuts' => 'RECORDS', 'shortcuts.' => array('source.' => array('field' => 'records'), 'tables' => 'tt_content,tx_news_domain_model_news', 'conf.' => array('tx_news_domain_model_news' => 'USER', 'tx_news_domain_model_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger', 'switchableControllerActions.' => array('News.' => array('detail')), 'settings' => '< plugin.tx_news.settings', 'settings.' => array('singleNews.' => array('field' => 'uid'), 'useStdWrap' => 'singleNews', 'insertRecord' => '1', 'isShortcut' => '1'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], records', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.shortcut'))), '20.' => array('tables' => 'tx_news_domain_model_news', 'conf.' => array('tx_news_domain_model_news' => 'USER', 'tx_news_domain_model_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger', 'switchableControllerActions.' => array('News.' => array('detail')), 'settings' => '< plugin.tx_news.settings', 'settings.' => array('singleNews.' => array('field' => 'uid'), 'useStdWrap' => 'singleNews', 'insertRecord' => '1', 'isShortcut' => '1'))))), 'table' => '< lib.contentElement', 'table.' => array('templateName' => 'Table', 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\CommaSeparatedValueProcessor', '10.' => array('fieldName' => 'bodytext', 'fieldDelimiter.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_delimiter'))), 'fieldEnclosure.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_enclosure')), 'if.' => array('value' => '0', 'equals.' => array('field' => 'table_enclosure'), 'negate' => '1')), 'maximumColumns.' => array('field' => 'cols'), 'as' => 'table')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, [table_caption|cols|table_header_position|table_tfoot]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.table')))), 'text' => '< lib.contentElement', 'text.' => array('templateName' => 'Text', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'textmedia' => '< lib.contentElement', 'textmedia.' => array('templateName' => 'Textmedia', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2560', 'minimumWidth' => '1', 'ratioWithHeight' => '1', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '23')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, assets [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textmedia')))), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'Textpic', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2560', 'minimumWidth' => '1', 'ratioWithHeight' => '1', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '23')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textpic')))), 'uploads' => '< lib.contentElement', 'uploads.' => array('templateName' => 'Uploads', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting', 'direction.' => array('field' => 'filelink_sorting_direction')))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], media, file_collections, filelink_sorting, [filelink_size|uploads_description|uploads_type]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.uploads')))), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_content' => '< lib.contentElement', 'menu_categorized_content.' => array('templateName' => 'MenuCategorizedContent', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tt_content', 'selectFields' => 'tt_content.*', 'groupBy' => 'uid', 'pidInList.' => array('data' => 'leveluid : 0'), 'recursive' => '99', 'join.' => array('data' => 'field:selected_categories', 'wrap' => 'sys_category_record_mm ON uid = sys_category_record_mm.uid_foreign AND sys_category_record_mm.uid_local IN(|)'), 'where.' => array('data' => 'field:category_field', 'wrap' => 'tablenames=\'tt_content\' and fieldname=\'|\''), 'orderBy' => 'tt_content.sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_pages' => '< lib.contentElement', 'menu_categorized_pages.' => array('templateName' => 'MenuCategorizedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'categories', 'special.' => array('value.' => array('field' => 'selected_categories'), 'relation.' => array('field' => 'category_field'), 'sorting' => 'title', 'order' => 'asc'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_pages' => '< lib.contentElement', 'menu_pages.' => array('templateName' => 'MenuPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_subpages' => '< lib.contentElement', 'menu_subpages.' => array('templateName' => 'MenuSubpages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu'))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages'))))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'as' => 'content', 'where' => 'sectionIndex = 1 AND ( colPos = 0 OR colPos > 199 )', 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')))))))), 'menu_section_pages' => '< lib.contentElement', 'menu_section_pages.' => array('templateName' => 'MenuSectionPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'orderBy' => 'sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_recently_updated' => '< lib.contentElement', 'menu_recently_updated.' => array('templateName' => 'MenuRecentlyUpdated', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'updated', 'special.' => array('value.' => array('field' => 'pages'), 'maxAge' => '3600*24*7', 'excludeNoSearchPages' => '1'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_related_pages' => '< lib.contentElement', 'menu_related_pages.' => array('templateName' => 'MenuRelatedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'keywords', 'special.' => array('value.' => array('field' => 'pages'), 'excludeNoSearchPages' => '1'), 'alternativeSortingField' => 'title', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap' => '< lib.contentElement', 'menu_sitemap.' => array('templateName' => 'MenuSitemap', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap_pages' => '< lib.contentElement', 'menu_sitemap_pages.' => array('templateName' => 'MenuSitemapPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'form_formframework' => '< lib.contentElement', 'form_formframework.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Form', 'pluginName' => 'Formframework')), 'felogin_login' => '< lib.contentElement', 'felogin_login.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Felogin', 'pluginName' => 'Login')), 't3sbs_fluidtemplate' => 'COA', 't3sbs_fluidtemplate.' => array('FLUIDTEMPLATE', '10.' => array('file.' => array('stdWrap.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'subheader', 'ifEmpty.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => 'EXT:t3sbootstrap/Resources/Private/Templates/Content/FluidTemplate.html'))))), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'settings.' => array('expandedContent' => '0', 'fontawesome.' => array('pagetitle' => '1'), 'codesnippet' => '0', 'lazyLoad' => '0', 'lazyLoadThreshold' => '0', 'webp' => '0', 'pagebrowser.' => array('enable' => '0'), 'backToTopTitle' => 'to top', 'backToTopClass' => 'fa fa-chevron-circle-up fa-4x text-dark', 'backToTopForAllPages' => '0', 'gtm' => '', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'sectionmenuIcons' => '0', 'navbar.' => array('image.' => array('defaultPath' => '/typo3conf/ext/t3sbootstrap/Resources/Public/Images/bootstrap-logo-white.svg', 'width' => '300', 'height' => '50', 'altText' => 'Company Logo'), 'subdropdown.' => array('twoColumns' => '30'), 'searchboxLink' => '0', 'feUserName' => '0', 'sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400'), 'pages.' => array('override.' => array('smallColumns' => '', 'breakpoint' => '')), 'config.' => array('uid' => '23', 'company' => 'pixelegg', 'homepageUid' => '1', 'pageTitle' => '0', 'pageTitlealign' => 'center', 'pageTitlecontainer' => 'container', 'pageTitleclass' => 'mb-3', 'metaEnable' => 'end', 'metaValue' => '13', 'metaContainer' => 'container', 'metaClass' => '0', 'metaText' => '<a class="p-2" href="tel:+49"><i class="fas fa-phone mr-1"></i> jetzt anrufen </a>', 'navbarEnable' => 'light', 'navbarEntrylevel' => '0', 'navbarLevels' => '4', 'navbarExcludeuiduist' => '0', 'navbarIncludespacer' => '0', 'navbarSectionmenu' => '0', 'navbarMegamenu' => '1', 'navbarHover' => '0', 'navbarClickableparent' => '1', 'navbarPlusicon' => '{$bootstrap.config.navbarPlusicon}', 'navbarDropdownAnimate' => '0', 'navbarBrand' => 'image', 'navbarbrandAlignment' => 'left', 'navbarImage' => '/fileadmin/setup/images/logo/logo.svg', 'navbarColor' => 'white', 'navbarBackground' => '0', 'navbarTransparent' => '0', 'navbarContainer' => '0', 'navbarInnercontainer' => 'container', 'navbarPlacement' => '0', 'navbarAlignment' => 'right', 'navbarClass' => '0', 'navbarToggler' => 'right', 'navbarAnimatedtoggler' => '0', 'navbarBreakpoint' => 'xl', 'navbarOffcanvas' => '1', 'navbarHeight' => '0', 'navbarSearchbox' => '0', 'navbarLangmenu' => '0', 'navbarShrinkcolorschemes' => 'white', 'navbarShrinkcolor' => 'dark', 'navbarRightMenuUidList' => '0', 'navbarExtraRow' => '0', 'navbarLangFlags' => '1', 'jumbotronEnable' => '1', 'jumbotronBgimage' => 'root', 'jumbotronSlide' => '0', 'jumbotronPosition' => 'below', 'jumbotronContainer' => 'none', 'jumbotronContainerposition' => 'Inside', 'jumbotronClass' => 'm-0 p-0', 'jumbotronCarouselInterval' => '500', 'jumbotronCarouselPause' => '', 'breadcrumbEnable' => '0', 'breadcrumbNotonrootpage' => '1', 'breadcrumbFaicon' => '1', 'breadcrumbCorner' => '0', 'breadcrumbBottom' => '0', 'breadcrumbPosition' => 'belowJum', 'breadcrumbContainer' => 'container', 'breadcrumbContainerposition' => 'inside', 'breadcrumbClass' => '0', 'sidebarEnable' => 'Sub', 'sidebarRightenable' => '0', 'sidebarLevels' => '4', 'sidebarEntrylevel' => '1', 'sidebarExcludeuiduist' => '0', 'sidebarIncludespacer' => '0', 'sidebarSectionMobile' => '0', 'footerEnable' => '1', 'footerFluid' => '{$bootstrap.config.footerFluid}', 'footerSlide' => '1', 'footerSticky' => '0', 'footerContainer' => 'container', 'footerContainerposition' => 'Inside', 'footerClass' => 'bg-dark text-white border-top border-dark', 'footerPid' => '6', 'expandedcontentEnabletop' => '0', 'expandedcontentSlidetop' => '0', 'expandedcontentContainerpositiontop' => 'Inside', 'expandedcontentContainertop' => 'none', 'expandedcontentClasstop' => '0', 'expandedcontentEnablebottom' => '1', 'expandedcontentSlidebottom' => '0', 'expandedcontentContainerpositionbottom' => 'Inside', 'expandedcontentContainerbottom' => 'none', 'expandedcontentClassbottom' => '0', 'generalRootline' => '1', 'contentOnlyOnRootpage' => '0', 'jqueryHeader' => '1', 'compress' => '0', 'disablePrefixComment' => '1', 'containerError' => '0', 'slideLeftAside' => '0', 'slideRightAside' => '0', 'pageContentExtraClass' => '0', 'bodyExtraClass' => '0', 'asideExtraClass' => '0', 'mainExtraClass' => '0', 'globalPaddingTop' => '0', 'stickyFooterExtraPadding' => '0', 'contentMarginTop' => '0', 'loadingSpinner' => '0', 'loadingSpinnerColor' => 'primary', 'lightboxSelection' => '2', 'magnifying' => '1', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sectionmenuStickyTop' => '0', 'backgroundImageEnable' => '0', 'backgroundImageSlide' => '0', 'shrinkingNavPadding' => '5', 'sidebarMenuPosition' => 'above', 'langMenuWithFaIcon' => '1', 'subheaderColor' => 'secondary', 'dateFormat' => 'd.m.Y', 'favicon' => '0', 'faLinkIcons' => '1', 'cardFlipperOnClick' => '0', 'lastModifiedContentElement' => '0', 'recentlyUpdatedContentElements' => '0'), 'indexedsearch.' => array('targetPid' => '0')))), 't3sbs_button' => '< lib.contentElement', 't3sbs_button.' => array('templateName' => 'Button', 'stdWrap.' => array('editIcons' => 'tt_content')), 't3sbs_card' => '< lib.contentElement', 't3sbs_card.' => array('templateName' => 'Card', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2560', 'minimumWidth' => '1', 'ratioWithHeight' => '1', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'overrideSmallColumns' => '', 'configuid' => '{$bootstrap.db.uid}'), 'T3SBS\\T3sbootstrap\\DataProcessing\\CardProcessor'), 'stdWrap.' => array('editIcons' => 'tt_content')), 't3sbs_carousel' => '< lib.contentElement', 't3sbs_carousel.' => array('templateName' => 'Carousel', 'settings.' => array('defaultHeaderType' => '3'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets'))), 'stdWrap.' => array('editIcons' => 'tt_content')), 't3sbs_mediaobject' => '< lib.contentElement', 't3sbs_mediaobject.' => array('templateName' => 'Mediaobject', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2560', 'minimumWidth' => '1', 'ratioWithHeight' => '1', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '{$bootstrap.db.uid}')), 'stdWrap.' => array('editIcons' => 'tt_content')), 't3sbs_gallery' => '< lib.contentElement', 't3sbs_gallery.' => array('templateName' => 'ImageGallery', 'settings.' => array('defaultHeaderType' => '2'), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\BsImageGalleryProcessor', '10.' => array('references.' => array('fieldName' => 'assets'), 'as' => 'files', 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2560', 'minimumWidth' => '1', 'ratioWithHeight' => '1', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '{$bootstrap.db.uid}')), 'stdWrap.' => array('editIcons' => 'tt_content')), 't3sbs_toast' => '< lib.contentElement', 't3sbs_toast.' => array('templateName' => 'Toast', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2560', 'minimumWidth' => '1', 'ratioWithHeight' => '1', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '{$bootstrap.db.uid}')), 'stdWrap.' => array('editIcons' => 'tt_content')), 'two_columns' => 'FLUIDTEMPLATE', 'two_columns.' => array('templateName' => 'TwoColumns', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '221.' => array('colPos' => '221', 'as' => 'col_221'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '222.' => array('colPos' => '222', 'as' => 'col_222'))), 'three_columns' => 'FLUIDTEMPLATE', 'three_columns.' => array('templateName' => 'ThreeColumns', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '231.' => array('colPos' => '231', 'as' => 'col_231'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '232.' => array('colPos' => '232', 'as' => 'col_232'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '233.' => array('colPos' => '233', 'as' => 'col_233'))), 'four_columns' => 'FLUIDTEMPLATE', 'four_columns.' => array('templateName' => 'FourColumns', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '241.' => array('colPos' => '241', 'as' => 'col_241'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '242.' => array('colPos' => '242', 'as' => 'col_242'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '243.' => array('colPos' => '243', 'as' => 'col_243'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '244.' => array('colPos' => '244', 'as' => 'col_244'))), 'six_columns' => 'FLUIDTEMPLATE', 'six_columns.' => array('templateName' => 'SixColumns', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '241.' => array('colPos' => '261', 'as' => 'col_261'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '242.' => array('colPos' => '262', 'as' => 'col_262'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '243.' => array('colPos' => '263', 'as' => 'col_263'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '244.' => array('colPos' => '264', 'as' => 'col_264'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '245.' => array('colPos' => '265', 'as' => 'col_265'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '246.' => array('colPos' => '266', 'as' => 'col_266'))), 'card_wrapper' => 'FLUIDTEMPLATE', 'card_wrapper.' => array('templateName' => 'CardWrapper', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '270.' => array('colPos' => '270', 'as' => 'col_270'))), 'button_group' => 'FLUIDTEMPLATE', 'button_group.' => array('templateName' => 'Buttongroup', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '271.' => array('colPos' => '271', 'as' => 'col_271'))), 'background_wrapper' => 'FLUIDTEMPLATE', 'background_wrapper.' => array('templateName' => 'BackgroundWrapper', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '273.' => array('colPos' => '273', 'as' => 'col_273'))), 'parallax_wrapper' => 'FLUIDTEMPLATE', 'parallax_wrapper.' => array('templateName' => 'ParallaxWrapper', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '274.' => array('colPos' => '274', 'as' => 'col_274'))), 'autoLayout_row' => 'FLUIDTEMPLATE', 'autoLayout_row.' => array('templateName' => 'AutoLayoutRow', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '272.' => array('colPos' => '272', 'as' => 'col_272'))), 'container' => 'FLUIDTEMPLATE', 'container.' => array('templateName' => 'Container', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '275.' => array('colPos' => '275', 'as' => 'col_275'))), 'carousel_container' => 'FLUIDTEMPLATE', 'carousel_container.' => array('templateName' => 'CarouselContainer', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '276.' => array('colPos' => '276', 'as' => 'col_276'))), 'collapsible_container' => 'FLUIDTEMPLATE', 'collapsible_container.' => array('templateName' => 'CollapsibleContainer', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '277.' => array('colPos' => '277', 'as' => 'col_277'))), 'collapsible_accordion' => 'FLUIDTEMPLATE', 'collapsible_accordion.' => array('templateName' => 'Collapsible', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '278.' => array('colPos' => '278', 'as' => 'col_278'))), 'modal' => 'FLUIDTEMPLATE', 'modal.' => array('templateName' => 'Modal', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '279.' => array('colPos' => '279', 'as' => 'col_279'))), 'tabs_container' => 'FLUIDTEMPLATE', 'tabs_container.' => array('templateName' => 'TabContainer', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '280.' => array('colPos' => '280', 'as' => 'col_280'))), 'tabs_tab' => 'FLUIDTEMPLATE', 'tabs_tab.' => array('templateName' => 'Tab', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '281.' => array('colPos' => '281', 'as' => 'col_281'))), 'listGroup_wrapper' => 'FLUIDTEMPLATE', 'listGroup_wrapper.' => array('templateName' => 'ListGroupWrapper', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '282.' => array('colPos' => '282', 'as' => 'col_282'))), 'masonry_wrapper' => 'FLUIDTEMPLATE', 'masonry_wrapper.' => array('templateName' => 'MasonryWrapper', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '283.' => array('colPos' => '283', 'as' => 'col_283'))), 'swiper_container' => 'FLUIDTEMPLATE', 'swiper_container.' => array('templateName' => 'SwiperContainer', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '300.' => array('colPos' => '300', 'as' => 'col_300'))), 'toast_container' => 'FLUIDTEMPLATE', 'toast_container.' => array('templateName' => 'ToastContainer', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '310.' => array('colPos' => '310', 'as' => 'col_310'))), 'counter_counter' => '< lib.contentElement', 'counter_counter.' => array('templateName' => 'Counter', 'settings.' => array('counter.' => array('start' => '0', 'end' => '100', 'duration' => '5000', 'delay' => '0', 'lazyStart' => '1', 'startEffect' => 'none', 'startEffectDuration' => '500', 'easing' => 'linear', 'title' => '', 'description' => ''))), 'iconcontent_iconcontent' => '< lib.contentElement', 'iconcontent_iconcontent.' => array('templateName' => 'IconContent', 'settings.' => array('iconcontent.' => array('icon' => '', 'link' => '', 'size' => '', 'color' => '', 'animation' => '', 'rotate' => '')))), '')
in /html/typo3/typo3_src-10.4.37/typo3/sysext/frontend/Classes/ContentObject/ContentContentObject.php line 95
                        $cObj->parentRecordNumber = $this->cObj->currentRecordNumber;
                        $frontendController->currentRecord = $conf['table'] . ':' . $row['uid'];
                        $this->cObj->lastChanged($row['tstamp']);
                        $cObj->start($row, $conf['table']);
                        $tmpValue = $cObj->cObjGetSingle($renderObjName, $renderObjConf, $renderObjKey);
                        $cobjValue .= $tmpValue;
                    }
                }
            }
at TYPO3\CMS\Frontend\ContentObject\ContentContentObject->render(array('table' => 'tt_content', 'select.' => array('includeRecordsWithoutDefaultTranslation' => '1', 'orderBy' => 'sorting', 'where' => 'colPos={register:colPos}', 'where.' => array('insertData' => '1'), 'pidInList.' => array('data' => 'register:pageUid'))))
in /html/typo3/typo3_src-10.4.37/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 829
        }

        // 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(object(TYPO3\CMS\Frontend\ContentObject\ContentContentObject), array('table' => 'tt_content', 'select.' => array('includeRecordsWithoutDefaultTranslation' => '1', 'orderBy' => 'sorting', 'where' => 'colPos={register:colPos}', 'where.' => array('insertData' => '1'), 'pidInList.' => array('data' => 'register:pageUid'))))
in /html/typo3/typo3_src-10.4.37/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 743
                }
                if (!$hooked) {
                    $contentObject = $this->getContentObject($name);
                    if ($contentObject) {
                        $content .= $this->render($contentObject, $conf);
                    } else {
                        // Call hook functions for extra processing
                        if ($name) {
                            if (!empty($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['cObjTypeAndClassDefault'])) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('CONTENT', array('table' => 'tt_content', 'select.' => array('includeRecordsWithoutDefaultTranslation' => '1', 'orderBy' => 'sorting', 'where' => 'colPos={register:colPos}', 'where.' => array('insertData' => '1'), 'pidInList.' => array('data' => 'register:pageUid'))), '10')
in /html/typo3/typo3_src-10.4.37/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 688
        foreach ($sKeyArray as $theKey) {
            $theValue = $setup[$theKey];
            if ((int)$theKey && strpos($theKey, '.') === false) {
                $conf = $setup[$theKey . '.'] ?? [];
                $content .= $this->cObjGetSingle($theValue, $conf, $addKey . $theKey);
            }
        }
        return $content;
    }
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGet(array('LOAD_REGISTER', '5.' => array('colPos.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'colPos', 'ifEmpty.' => array('cObject' => 'TEXT', 'cObject.' => array('value.' => array('current' => '1'), 'ifEmpty' => '0')))), 'pageUid.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'pageUid', 'ifEmpty.' => array('data' => 'TSFE:id')))), 'CONTENT', '10.' => array('table' => 'tt_content', 'select.' => array('includeRecordsWithoutDefaultTranslation' => '1', 'orderBy' => 'sorting', 'where' => 'colPos={register:colPos}', 'where.' => array('insertData' => '1'), 'pidInList.' => array('data' => 'register:pageUid'))), 'RESTORE_REGISTER'))
in /html/typo3/typo3_src-10.4.37/typo3/sysext/frontend/Classes/ContentObject/ContentObjectArrayContentObject.php line 42
        if (!empty($conf['if.']) && !$this->cObj->checkIf($conf['if.'])) {
            return '';
        }

        $content = $this->cObj->cObjGet($conf);
        $wrap = isset($conf['wrap.']) ? $this->cObj->stdWrap($conf['wrap'], $conf['wrap.']) : $conf['wrap'];
        if ($wrap) {
            $content = $this->cObj->wrap($content, $wrap);
        }
at TYPO3\CMS\Frontend\ContentObject\ContentObjectArrayContentObject->render(array('LOAD_REGISTER', '5.' => array('colPos.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'colPos', 'ifEmpty.' => array('cObject' => 'TEXT', 'cObject.' => array('value.' => array('current' => '1'), 'ifEmpty' => '0')))), 'pageUid.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'pageUid', 'ifEmpty.' => array('data' => 'TSFE:id')))), 'CONTENT', '10.' => array('table' => 'tt_content', 'select.' => array('includeRecordsWithoutDefaultTranslation' => '1', 'orderBy' => 'sorting', 'where' => 'colPos={register:colPos}', 'where.' => array('insertData' => '1'), 'pidInList.' => array('data' => 'register:pageUid'))), 'RESTORE_REGISTER'))
in /html/typo3/typo3_src-10.4.37/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 829
        }

        // 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(object(TYPO3\CMS\Frontend\ContentObject\ContentObjectArrayContentObject), array('LOAD_REGISTER', '5.' => array('colPos.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'colPos', 'ifEmpty.' => array('cObject' => 'TEXT', 'cObject.' => array('value.' => array('current' => '1'), 'ifEmpty' => '0')))), 'pageUid.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'pageUid', 'ifEmpty.' => array('data' => 'TSFE:id')))), 'CONTENT', '10.' => array('table' => 'tt_content', 'select.' => array('includeRecordsWithoutDefaultTranslation' => '1', 'orderBy' => 'sorting', 'where' => 'colPos={register:colPos}', 'where.' => array('insertData' => '1'), 'pidInList.' => array('data' => 'register:pageUid'))), 'RESTORE_REGISTER'))
in /html/typo3/typo3_src-10.4.37/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 743
                }
                if (!$hooked) {
                    $contentObject = $this->getContentObject($name);
                    if ($contentObject) {
                        $content .= $this->render($contentObject, $conf);
                    } else {
                        // Call hook functions for extra processing
                        if ($name) {
                            if (!empty($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['cObjTypeAndClassDefault'])) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('COA', array('LOAD_REGISTER', '5.' => array('colPos.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'colPos', 'ifEmpty.' => array('cObject' => 'TEXT', 'cObject.' => array('value.' => array('current' => '1'), 'ifEmpty' => '0')))), 'pageUid.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'pageUid', 'ifEmpty.' => array('data' => 'TSFE:id')))), 'CONTENT', '10.' => array('table' => 'tt_content', 'select.' => array('includeRecordsWithoutDefaultTranslation' => '1', 'orderBy' => 'sorting', 'where' => 'colPos={register:colPos}', 'where.' => array('insertData' => '1'), 'pidInList.' => array('data' => 'register:pageUid'))), 'RESTORE_REGISTER'), 'lib.dynamicContent')
in /html/typo3/typo3_src-10.4.37/typo3/sysext/fluid/Classes/ViewHelpers/CObjectViewHelper.php line 193
        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(object(TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer), array('contentElement' => 'FLUIDTEMPLATE', 'contentElement.' => array('templateName' => 'Default', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1320m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'title="{file:current:description}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '0', 'imgCopyright' => '0', 'animateCss' => '0', 'animateVersion' => '4.1.1', 'masonryVersion' => '4.2.2', 'masonryIntegrity' => 'sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D', 'jarallaxVersion' => '1', 'baguetteBoxVersion' => '1.11.1', 'lightcaseVersion' => '2.5.0', 'magnificpopupVersion' => '1.1.0', 'owlCarouselVersion' => '2.3.4', 'swiperVersion' => '7', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '11.2.0', 'dateformat' => 'd.m.Y', 'subheaderTag' => '{$bootstrap.config.subheaderTag}', 'subheaderColor' => 'secondary', 'sectionmenuStickyTop' => '0', 'magnifying' => '1', 'picturefill' => '1', 'srcsetDesktop' => '125, 255, 385, 576, 768, 992, 1200, 1440, 1920, 2650', 'srcsetTablet' => '125, 255, 385, 576, 768, 992, 1200', 'srcsetMobile' => '575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'xl', 'lightboxSelection' => '2', 'cardFlipperOnClick' => '0', 'sectionmenuIcons' => '0', 'disableAccordionScrollToTop' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400')), 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:t3sbootstrap/Resources/Private/Templates/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/', 'fileadmin/setup/Templates/t3sbootstrap/Templates/Content/', '', 'EXT:counter/Resources/Private/Templates/', 'EXT:icon_content/Resources/Private/Templates/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', '', 'EXT:counter/Resources/Private/Partials/', 'EXT:icon_content/Resources/Private/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '23', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400', 'no' => '0')))), 'parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var, s, mark,s, mark', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2')), 'htmlSanitize' => '1', 'tags' => 'mark'), 'parseFunc_RTE.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var, s, mark,s, mark', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2'), 'encapsLines.' => array('encapsTagList' => 'p,pre,h1,h2,h3,h4,h5,h6,hr,dt', 'remapTag.' => array('DIV' => 'P'), 'nonWrappedTag' => 'P', 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var, s, mark', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2')), 'htmlSanitize' => '1'), 'HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array('pre.' => array('fixAttrib.' => array('class.' => array('default' => 'rteContentList', 'always' => '1', 'list' => 'rteContentList')))), 'keepNonMatchedTags' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array('table.' => array('fixAttrib.' => array('class.' => array('default' => 'table', 'always' => '1')))), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array('parseFunc' => '< lib.parseFunc_RTE', 'parseFunc.' => array('nonTypoTagStdWrap.' => array('encapsLines.' => array('nonWrappedTag' => '', 'innerStdWrap_all.' => array('ifBlank' => '')))))), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1')), 'tags' => 'mark'), 'tx_form.' => array('contentElementRendering' => 'RECORDS', 'contentElementRendering.' => array('tables' => 'tt_content', 'source.' => array('current' => '1'), 'dontCheckPid' => '1')), 'tx_news.' => array('contentElementRendering' => 'RECORDS', 'contentElementRendering.' => array('tables' => 'tt_content', 'source.' => array('current' => '1'), 'dontCheckPid' => '1')), 'pageTitle' => 'TEXT', 'pageTitle.' => array('data' => 'leveltitle:-1'), 'newsTitle' => 'TEXT', 'newsTitle.' => array('data' => 'register:newsTitle', 'stdWrap.' => array('wrap' => '<li class="breadcrumb-item active">|</li>', 'required' => '1')), 'mathCeil' => 'TEXT', 'mathCeil.' => array('current' => '1', 'prioriCalc' => '1', 'round' => '1', 'round.' => array('roundType' => 'ceil')), 'currentDate' => 'TEXT', 'currentDate.' => array('data' => 'date : U', 'strftime' => '%A, %e. %B %Y'), 'currentDomain' => 'TEXT', 'currentDomain.' => array('dataWrap' => '{getIndpEnv:TYPO3_REQUEST_HOST}|', 'typolink.' => array('parameter.' => array('current' => '1'), 'returnLast' => 'url')), 'printButton' => 'COA', 'printButton.' => array('TEXT', '10.' => array('value' => '<i class="fas fa-print"></i>'), 'stdWrap.' => array('typolinkno_cache' => '1', 'typolink.' => array('title' => 'Druckversion dieser Seite in einem neuen Fenster öffnen', 'ATagParams' => 'target = _blank', 'parameter.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '5.' => array('data' => 'page:uid', 'wrap' => 'index.php?id=|', 'required' => '1'), 'TEXT', '10.' => array('value' => '&no_cache=1'), 'TEXT', '20.' => array('data' => 'GP:L', 'wrap' => '&L=|', 'required' => '1'), 'TEXT', '30.' => array('data' => 'GP:tx_news_pi1 | news', 'wrap' => '&tx_news_pi1[news]=|', 'required' => '1'), 'TEXT', '40.' => array('data' => 'GP:tx_news_pi1 | controller', 'wrap' => '&tx_news_pi1[controller]=|', 'required' => '1'), 'TEXT', '50.' => array('data' => 'GP:tx_news_pi1 | action', 'wrap' => '&tx_news_pi1[action]=|', 'required' => '1'), 'TEXT', '60.' => array('data' => 'GP:cHash', 'wrap' => '&cHash=|', 'required' => '1'), 'TEXT', '70.' => array('value' => '&type=98')))))), 'dynamicContent' => 'COA', 'dynamicContent.' => array('LOAD_REGISTER', '5.' => array('colPos.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'colPos', 'ifEmpty.' => array('cObject' => 'TEXT', 'cObject.' => array('value.' => array('current' => '1'), 'ifEmpty' => '0')))), 'pageUid.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'pageUid', 'ifEmpty.' => array('data' => 'TSFE:id')))), 'CONTENT', '10.' => array('table' => 'tt_content', 'select.' => array('includeRecordsWithoutDefaultTranslation' => '1', 'orderBy' => 'sorting', 'where' => 'colPos={register:colPos}', 'where.' => array('insertData' => '1'), 'pidInList.' => array('data' => 'register:pageUid'))), 'RESTORE_REGISTER'), 'dynamicContentSlide' => '< lib.dynamicContent', 'dynamicContentSlide.' => array('10.' => array('slide' => '-1')), 'contentByUid' => 'RECORDS', 'contentByUid.' => array('tables' => 'tt_content', 'source.' => array('current' => '1'), 'dontCheckPid' => '1'), 'content.' => array('footerFromPid' => 'CONTENT', 'footerFromPid.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos=0', 'pidInList' => '6'), 'if.' => array('isTrue' => '6'))), 'pageBackground' => 'COA', 'pageBackground.' => array('FILES', '10.' => array('references.' => array('data' => 'levelmedia:-1, slide', 'listNum' => '0'), 'renderObj' => 'TEXT', 'renderObj.' => array('dataWrap' => '<div id="pageBackground" class="focuspoint" data-image-h="{fp:h}" data-image-w="{fp:w}" data-focus-y="{fp:y}" data-focus-x="{fp:x}"><img src="{file:current:publicUrl}" /></div>'))), 'math' => 'TEXT', 'math.' => array('current' => '1', 'prioriCalc' => 'intval'), 'dp_cookieconsent' => 'FLUIDTEMPLATE', 'dp_cookieconsent.' => array('file' => 'EXT:dp_cookieconsent/Resources/Private/Layouts/Cookie.html', 'templateName' => 'Cookie', 'templateRootPaths.' => array('EXT:dp_cookieconsent/Resources/Private/Templates/', ''), 'partialRootPaths.' => array('EXT:dp_cookieconsent/Resources/Private/Partials/', ''), 'layoutRootPaths.' => array('EXT:dp_cookieconsent/Resources/Private/Layouts/', ''), 'settings.' => array('url' => '0', 'target' => '_blank', 'theme' => 'wire', 'position' => 'bottom-left', 'type' => 'opt-out', 'revokable' => 'true', 'reloadOnRevoke' => 'false', 'checkboxes.' => array('statistics' => 'true', 'marketing' => 'false'), 'overlay.' => array('notice' => 'true', 'box.' => array('background' => '#FFFFFF', 'text' => '#303241'), 'button.' => array('background' => '#FFFFFF', 'text' => '#303241')), 'palette.' => array('popup.' => array('background' => '#FFFFFF', 'text' => '#303241'), 'button.' => array('background' => '#303241', 'text' => '#FFFFFF'))), 'dataProcessing.' => array('DirkPersky\\DpCookieconsent\\DataProcessing\\CookieScriptsProcessor', '10.' => array('as' => 'dp_cookie_scripts', 'pid' => '0')))), 'lib.dynamicContent', 'dynamicContent')
in /html/typo3/typo3_src-10.4.37/typo3/sysext/fluid/Classes/ViewHelpers/CObjectViewHelper.php line 170
                '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(array('data' => array('pageUid' => 161, 'colPos' => 0), 'typoscriptObjectPath' => 'lib.dynamicContent', 'currentValueKey' => null, 'table' => ''), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/typo3/typo3temp/var/cache/code/fluid_template/partial_BackendLayouts_OneCol_1a890b3e76a0cb0d0f78e7699303a98bf7d8d1df.php line 310
);$array34['pageUid'] = $renderingContext->getVariableProvider()->getByPath('data.uid', $array35);
$array34['colPos'] = 0;
$arguments32['data'] = $array34;
$renderChildrenClosure33 = ($arguments32['data'] !== null) ? function() use ($arguments32) { return $arguments32['data']; } : $renderChildrenClosure33;
$output31 .= TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderStatic($arguments32, $renderChildrenClosure33, $renderingContext);

$output31 .= '
  ';
return $output31;
at partial_BackendLayouts_OneCol_1a890b3e76a0cb0d0f78e7699303a98bf7d8d1df->{closure}()
in /html/typo3/typo3_src-10.4.37/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(array(object(Closure)), array(), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/typo3/typo3_src-10.4.37/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(array('then' => null, 'else' => null, 'condition' => false, '__thenClosure' => object(Closure), '__elseClosures' => array(object(Closure))), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/typo3/typo3temp/var/cache/code/fluid_template/partial_BackendLayouts_OneCol_1a890b3e76a0cb0d0f78e7699303a98bf7d8d1df.php line 317
  ';
return $output31;
};

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

$output0 .= '
</main>

at partial_BackendLayouts_OneCol_1a890b3e76a0cb0d0f78e7699303a98bf7d8d1df->render(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/typo3/typo3_src-10.4.37/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('r', 'S')
in /html/typo3/typo3_src-10.4.37/vendor/typo3fluid/fluid/src/ViewHelpers/RenderViewHelper.php line 141
            $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('r', 'S')
in /html/typo3/typo3temp/var/cache/code/fluid_template/Standard_action_index_0ca42c30216e1518f2f92a397c94199d2eac134f.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_0ca42c30216e1518f2f92a397c94199d2eac134f->{closure}()
in /html/typo3/typo3_src-10.4.37/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(array('then' => null, 'else' => null, 'condition' => true, '__thenClosure' => object(Closure), '__elseClosures' => array(object(Closure))), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/typo3/typo3temp/var/cache/code/fluid_template/Standard_action_index_0ca42c30216e1518f2f92a397c94199d2eac134f.php line 255
   ';
return $output16;
};

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

$output0 .= '
 </div>
';
at Standard_action_index_0ca42c30216e1518f2f92a397c94199d2eac134f->section_e435c89d5cba9b2846882f39f7c202e0769a44ad(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/typo3/typo3_src-10.4.37/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('r', 'S')
in /html/typo3/typo3_src-10.4.37/vendor/typo3fluid/fluid/src/ViewHelpers/RenderViewHelper.php line 143
            $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('r', 'S')
in /html/typo3/typo3temp/var/cache/code/fluid_template/Standard_action_index_0ca42c30216e1518f2f92a397c94199d2eac134f.php line 4380
$arguments365['debug'] = true;
$arguments365['section'] = 'PageContent';
$arguments365['arguments'] = $renderingContext->getVariableProvider()->getAll();

$output363 .= TYPO3\CMS\Fluid\ViewHelpers\RenderViewHelper::renderStatic($arguments365, $renderChildrenClosure366, $renderingContext);

$output363 .= '
      </div>
     ';
at Standard_action_index_0ca42c30216e1518f2f92a397c94199d2eac134f->{closure}()
in /html/typo3/typo3_src-10.4.37/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(array('then' => null, 'else' => null, 'condition' => true, '__thenClosure' => object(Closure), '__elseClosures' => array(object(Closure))), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/typo3/typo3temp/var/cache/code/fluid_template/Standard_action_index_0ca42c30216e1518f2f92a397c94199d2eac134f.php line 4561
     ';
return $output368;
};

$output274 .= TYPO3Fluid\Fluid\ViewHelpers\IfViewHelper::renderStatic($arguments361, $renderChildrenClosure362, $renderingContext);

$output274 .= '
   </div>
   ';
at Standard_action_index_0ca42c30216e1518f2f92a397c94199d2eac134f->{closure}()
in /html/typo3/typo3_src-10.4.37/vendor/typo3fluid/fluid/src/ViewHelpers/SpacelessViewHelper.php line 55
     * @return string
     */
    public static function renderStatic(array $arguments, \Closure $childClosure, RenderingContextInterface $renderingContext)
    {
        return trim(preg_replace('/\\>\\s+\\</', '><', $childClosure()));
    }
}
at TYPO3Fluid\Fluid\ViewHelpers\SpacelessViewHelper::renderStatic(array(), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/typo3/typo3temp/var/cache/code/fluid_template/Standard_action_index_0ca42c30216e1518f2f92a397c94199d2eac134f.php line 5030
return $output274;
};
$arguments272 = array();

$output271 .= TYPO3Fluid\Fluid\ViewHelpers\SpacelessViewHelper::renderStatic($arguments272, $renderChildrenClosure273, $renderingContext);

$output271 .= '
 ';
return $output271;
at Standard_action_index_0ca42c30216e1518f2f92a397c94199d2eac134f->{closure}()
in /html/typo3/typo3_src-10.4.37/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(array(object(Closure)), array(), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/typo3/typo3_src-10.4.37/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(array('then' => null, 'else' => null, 'condition' => false, '__thenClosure' => object(Closure), '__elseClosures' => array(object(Closure))), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/typo3/typo3temp/var/cache/code/fluid_template/Standard_action_index_0ca42c30216e1518f2f92a397c94199d2eac134f.php line 5037
 ';
return $output271;
};

$output268 .= TYPO3Fluid\Fluid\ViewHelpers\IfViewHelper::renderStatic($arguments269, $renderChildrenClosure270, $renderingContext);

$output268 .= '


at Standard_action_index_0ca42c30216e1518f2f92a397c94199d2eac134f->render(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/typo3/typo3_src-10.4.37/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 /html/typo3/typo3_src-10.4.37/typo3/sysext/frontend/Classes/ContentObject/FluidTemplateContentObject.php line 358
     * @return string
     */
    protected function renderFluidView()
    {
        return $this->view->render();
    }

    /**
     * Apply standard wrap to content
at TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject->renderFluidView()
in /html/typo3/typo3_src-10.4.37/typo3/sysext/frontend/Classes/ContentObject/FluidTemplateContentObject.php line 108

        $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(array('file' => 'EXT:t3sbootstrap/Resources/Private/Templates/Main.html', 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'settings.' => array('expandedContent' => '0', 'fontawesome.' => array('pagetitle' => '1'), 'codesnippet' => '0', 'lazyLoad' => '0', 'lazyLoadThreshold' => '0', 'webp' => '0', 'pagebrowser.' => array('enable' => '0'), 'backToTopTitle' => 'to top', 'backToTopClass' => 'fa fa-chevron-circle-up fa-4x text-dark', 'backToTopForAllPages' => '0', 'gtm' => '', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'sectionmenuIcons' => '0', 'navbar.' => array('image.' => array('defaultPath' => '/typo3conf/ext/t3sbootstrap/Resources/Public/Images/bootstrap-logo-white.svg', 'width' => '300', 'height' => '50', 'altText' => 'GO7-Group-Logo'), 'subdropdown.' => array('twoColumns' => '30'), 'searchboxLink' => '0', 'feUserName' => '0', 'sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400'), 'pages.' => array('override.' => array('smallColumns' => '', 'breakpoint' => '')), 'config.' => array('uid' => '23', 'company' => 'pixelegg', 'homepageUid' => '1', 'pageTitle' => '0', 'pageTitlealign' => 'center', 'pageTitlecontainer' => 'container', 'pageTitleclass' => 'mb-3', 'metaEnable' => 'end', 'metaValue' => '13', 'metaContainer' => 'container', 'metaClass' => '0', 'metaText' => '<a class="p-2" href="tel:+49"><i class="fas fa-phone mr-1"></i> jetzt anrufen </a>', 'navbarEnable' => 'light', 'navbarEntrylevel' => '0', 'navbarLevels' => '4', 'navbarExcludeuiduist' => '0', 'navbarIncludespacer' => '0', 'navbarSectionmenu' => '0', 'navbarMegamenu' => '1', 'navbarHover' => '0', 'navbarClickableparent' => '1', 'navbarPlusicon' => '{$bootstrap.config.navbarPlusicon}', 'navbarDropdownAnimate' => '0', 'navbarBrand' => 'image', 'navbarbrandAlignment' => 'left', 'navbarImage' => '/fileadmin/setup/images/logo/logo.svg', 'navbarColor' => 'white', 'navbarBackground' => '0', 'navbarTransparent' => '0', 'navbarContainer' => '0', 'navbarInnercontainer' => 'container', 'navbarPlacement' => '0', 'navbarAlignment' => 'right', 'navbarClass' => '0', 'navbarToggler' => 'right', 'navbarAnimatedtoggler' => '0', 'navbarBreakpoint' => 'xl', 'navbarOffcanvas' => '1', 'navbarHeight' => '0', 'navbarSearchbox' => '0', 'navbarLangmenu' => '0', 'navbarShrinkcolorschemes' => 'white', 'navbarShrinkcolor' => 'dark', 'navbarRightMenuUidList' => '0', 'navbarExtraRow' => '0', 'navbarLangFlags' => '1', 'jumbotronEnable' => '1', 'jumbotronBgimage' => 'root', 'jumbotronSlide' => '0', 'jumbotronPosition' => 'below', 'jumbotronContainer' => 'none', 'jumbotronContainerposition' => 'Inside', 'jumbotronClass' => 'm-0 p-0', 'jumbotronCarouselInterval' => '500', 'jumbotronCarouselPause' => '', 'breadcrumbEnable' => '0', 'breadcrumbNotonrootpage' => '1', 'breadcrumbFaicon' => '1', 'breadcrumbCorner' => '0', 'breadcrumbBottom' => '0', 'breadcrumbPosition' => 'belowJum', 'breadcrumbContainer' => 'container', 'breadcrumbContainerposition' => 'inside', 'breadcrumbClass' => '0', 'sidebarEnable' => 'Sub', 'sidebarRightenable' => '0', 'sidebarLevels' => '4', 'sidebarEntrylevel' => '1', 'sidebarExcludeuiduist' => '0', 'sidebarIncludespacer' => '0', 'sidebarSectionMobile' => '0', 'footerEnable' => '1', 'footerFluid' => '{$bootstrap.config.footerFluid}', 'footerSlide' => '1', 'footerSticky' => '0', 'footerContainer' => 'container', 'footerContainerposition' => 'Inside', 'footerClass' => 'bg-dark text-white border-top border-dark', 'footerPid' => '6', 'expandedcontentEnabletop' => '0', 'expandedcontentSlidetop' => '0', 'expandedcontentContainerpositiontop' => 'Inside', 'expandedcontentContainertop' => 'none', 'expandedcontentClasstop' => '0', 'expandedcontentEnablebottom' => '1', 'expandedcontentSlidebottom' => '0', 'expandedcontentContainerpositionbottom' => 'Inside', 'expandedcontentContainerbottom' => 'none', 'expandedcontentClassbottom' => '0', 'generalRootline' => '1', 'contentOnlyOnRootpage' => '0', 'jqueryHeader' => '1', 'compress' => '0', 'disablePrefixComment' => '1', 'containerError' => '0', 'slideLeftAside' => '0', 'slideRightAside' => '0', 'pageContentExtraClass' => '0', 'bodyExtraClass' => '0', 'asideExtraClass' => '0', 'mainExtraClass' => '0', 'globalPaddingTop' => '0', 'stickyFooterExtraPadding' => '0', 'contentMarginTop' => '0', 'loadingSpinner' => '0', 'loadingSpinnerColor' => 'primary', 'lightboxSelection' => '2', 'magnifying' => '1', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sectionmenuStickyTop' => '0', 'backgroundImageEnable' => '0', 'backgroundImageSlide' => '0', 'shrinkingNavPadding' => '5', 'sidebarMenuPosition' => 'above', 'langMenuWithFaIcon' => '1', 'subheaderColor' => 'secondary', 'dateFormat' => 'd.m.Y', 'favicon' => '0', 'faLinkIcons' => '1', 'cardFlipperOnClick' => '0', 'lastModifiedContentElement' => '0', 'recentlyUpdatedContentElements' => '0'), 'indexedsearch.' => array('targetPid' => '0')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('entryLevel.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '0', 'override' => '0', 'override.' => array('if.' => array('isTrue' => '0')))), 'levels.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '4', 'override' => '4', 'override.' => array('if.' => array('isTrue' => '4')))), 'excludeUidList.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '0', 'override' => '0', 'override.' => array('if.' => array('isTrue' => '0')))), 'includeSpacer.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '0', 'override' => '0', 'override.' => array('if.' => array('isTrue' => '0')))), 'as' => 'navbarMenu', 'if.' => array('isFalse.' => array('value' => '0'))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '11.' => array('special' => 'list', 'special.' => array('value' => '0'), 'as' => 'navbarMenuRight', 'if.' => array('isTrue' => '0')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '12.' => array('special' => 'browse', 'special.' => array('items' => 'nextsection|next', 'items.' => array('prevnextToSection' => '1')), 'entryLevel' => '1', 'as' => 'browseNext', 'if.' => array('isTrue' => '0')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '13.' => array('special' => 'browse', 'special.' => array('items' => 'prev|prevsection', 'items.' => array('prevnextToSection' => '1')), 'entryLevel' => '1', 'as' => 'browsePrev', 'if.' => array('isTrue' => '0')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('entryLevel.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '1', 'override' => '-1', 'override.' => array('if.' => array('equals' => '99', 'value' => '1')))), 'levels.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '4', 'override' => '4', 'override.' => array('if.' => array('isTrue' => '4')))), 'excludeUidList.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '0', 'override' => '0', 'override.' => array('if.' => array('isTrue' => '0')))), 'includeSpacer.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '0', 'override' => '0', 'override.' => array('if.' => array('isTrue' => '0')))), 'as' => 'subNavigation', 'if.' => array('isTrue.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '10.' => array('value' => '1', 'if.' => array('equals' => 'Sub', 'value' => 'Sub')), 'TEXT', '20.' => array('value' => '1', 'if.' => array('equals' => 'Sub', 'value' => '0')))))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '30.' => array('special' => 'rootline', 'special.' => array('range' => '0|-1'), 'as' => 'breadcrumb', 'if.' => array('isTrue.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '10.' => array('if.' => array('isTrue' => '0')), 'TEXT', '20.' => array('value' => '1', 'if.' => array('isTrue' => '{$bootstrap.config.bottom}')))))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor', '40.' => array('languages' => 'auto', 'as' => 'languageNavigation', 'if.' => array('isTrue' => '0')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '50.' => array('special' => 'list', 'special.' => array('value.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '13', 'override' => '13', 'override.' => array('if.' => array('isTrue' => '13'))))), 'excludeUidList.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '1')), 'levels' => '1', 'as' => 'metaNavigation', 'if.' => array('isTrue' => 'end')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '60.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages'))))), 'as' => 'sectionMenu', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'where' => 'sectionIndex = 1 AND ( colPos = 0 OR colPos > 199 )', 'orderBy' => 'sorting', 'as' => 'content')), 'if.' => array('isTrue.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '10.' => array('value' => '1', 'if.' => array('isTrue' => '0')), 'TEXT', '20.' => array('value' => '1', 'if.' => array('equals' => 'Section', 'value' => 'Sub')), 'TEXT', '30.' => array('value' => '1', 'if.' => array('equals' => 'Section', 'value' => '0')), 'TEXT', '40.' => array('value' => '1', 'if.' => array('isTrue' => '0')))))), 'T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '70.' => array('lastModifiedContentElement' => '0', 'recentlyUpdatedContentElements' => '0', 'if.' => array('value' => '0', 'equals' => '1'), 'isTrue' => '0'), 'T3SBS\\T3sbootstrap\\DataProcessing\\ConfigProcessor')))
in /html/typo3/typo3_src-10.4.37/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 829
        }

        // 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(object(TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject), array('file' => 'EXT:t3sbootstrap/Resources/Private/Templates/Main.html', 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'settings.' => array('expandedContent' => '0', 'fontawesome.' => array('pagetitle' => '1'), 'codesnippet' => '0', 'lazyLoad' => '0', 'lazyLoadThreshold' => '0', 'webp' => '0', 'pagebrowser.' => array('enable' => '0'), 'backToTopTitle' => 'to top', 'backToTopClass' => 'fa fa-chevron-circle-up fa-4x text-dark', 'backToTopForAllPages' => '0', 'gtm' => '', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'sectionmenuIcons' => '0', 'navbar.' => array('image.' => array('defaultPath' => '/typo3conf/ext/t3sbootstrap/Resources/Public/Images/bootstrap-logo-white.svg', 'width' => '300', 'height' => '50', 'altText' => 'GO7-Group-Logo'), 'subdropdown.' => array('twoColumns' => '30'), 'searchboxLink' => '0', 'feUserName' => '0', 'sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400'), 'pages.' => array('override.' => array('smallColumns' => '', 'breakpoint' => '')), 'config.' => array('uid' => '23', 'company' => 'pixelegg', 'homepageUid' => '1', 'pageTitle' => '0', 'pageTitlealign' => 'center', 'pageTitlecontainer' => 'container', 'pageTitleclass' => 'mb-3', 'metaEnable' => 'end', 'metaValue' => '13', 'metaContainer' => 'container', 'metaClass' => '0', 'metaText' => '<a class="p-2" href="tel:+49"><i class="fas fa-phone mr-1"></i> jetzt anrufen </a>', 'navbarEnable' => 'light', 'navbarEntrylevel' => '0', 'navbarLevels' => '4', 'navbarExcludeuiduist' => '0', 'navbarIncludespacer' => '0', 'navbarSectionmenu' => '0', 'navbarMegamenu' => '1', 'navbarHover' => '0', 'navbarClickableparent' => '1', 'navbarPlusicon' => '{$bootstrap.config.navbarPlusicon}', 'navbarDropdownAnimate' => '0', 'navbarBrand' => 'image', 'navbarbrandAlignment' => 'left', 'navbarImage' => '/fileadmin/setup/images/logo/logo.svg', 'navbarColor' => 'white', 'navbarBackground' => '0', 'navbarTransparent' => '0', 'navbarContainer' => '0', 'navbarInnercontainer' => 'container', 'navbarPlacement' => '0', 'navbarAlignment' => 'right', 'navbarClass' => '0', 'navbarToggler' => 'right', 'navbarAnimatedtoggler' => '0', 'navbarBreakpoint' => 'xl', 'navbarOffcanvas' => '1', 'navbarHeight' => '0', 'navbarSearchbox' => '0', 'navbarLangmenu' => '0', 'navbarShrinkcolorschemes' => 'white', 'navbarShrinkcolor' => 'dark', 'navbarRightMenuUidList' => '0', 'navbarExtraRow' => '0', 'navbarLangFlags' => '1', 'jumbotronEnable' => '1', 'jumbotronBgimage' => 'root', 'jumbotronSlide' => '0', 'jumbotronPosition' => 'below', 'jumbotronContainer' => 'none', 'jumbotronContainerposition' => 'Inside', 'jumbotronClass' => 'm-0 p-0', 'jumbotronCarouselInterval' => '500', 'jumbotronCarouselPause' => '', 'breadcrumbEnable' => '0', 'breadcrumbNotonrootpage' => '1', 'breadcrumbFaicon' => '1', 'breadcrumbCorner' => '0', 'breadcrumbBottom' => '0', 'breadcrumbPosition' => 'belowJum', 'breadcrumbContainer' => 'container', 'breadcrumbContainerposition' => 'inside', 'breadcrumbClass' => '0', 'sidebarEnable' => 'Sub', 'sidebarRightenable' => '0', 'sidebarLevels' => '4', 'sidebarEntrylevel' => '1', 'sidebarExcludeuiduist' => '0', 'sidebarIncludespacer' => '0', 'sidebarSectionMobile' => '0', 'footerEnable' => '1', 'footerFluid' => '{$bootstrap.config.footerFluid}', 'footerSlide' => '1', 'footerSticky' => '0', 'footerContainer' => 'container', 'footerContainerposition' => 'Inside', 'footerClass' => 'bg-dark text-white border-top border-dark', 'footerPid' => '6', 'expandedcontentEnabletop' => '0', 'expandedcontentSlidetop' => '0', 'expandedcontentContainerpositiontop' => 'Inside', 'expandedcontentContainertop' => 'none', 'expandedcontentClasstop' => '0', 'expandedcontentEnablebottom' => '1', 'expandedcontentSlidebottom' => '0', 'expandedcontentContainerpositionbottom' => 'Inside', 'expandedcontentContainerbottom' => 'none', 'expandedcontentClassbottom' => '0', 'generalRootline' => '1', 'contentOnlyOnRootpage' => '0', 'jqueryHeader' => '1', 'compress' => '0', 'disablePrefixComment' => '1', 'containerError' => '0', 'slideLeftAside' => '0', 'slideRightAside' => '0', 'pageContentExtraClass' => '0', 'bodyExtraClass' => '0', 'asideExtraClass' => '0', 'mainExtraClass' => '0', 'globalPaddingTop' => '0', 'stickyFooterExtraPadding' => '0', 'contentMarginTop' => '0', 'loadingSpinner' => '0', 'loadingSpinnerColor' => 'primary', 'lightboxSelection' => '2', 'magnifying' => '1', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sectionmenuStickyTop' => '0', 'backgroundImageEnable' => '0', 'backgroundImageSlide' => '0', 'shrinkingNavPadding' => '5', 'sidebarMenuPosition' => 'above', 'langMenuWithFaIcon' => '1', 'subheaderColor' => 'secondary', 'dateFormat' => 'd.m.Y', 'favicon' => '0', 'faLinkIcons' => '1', 'cardFlipperOnClick' => '0', 'lastModifiedContentElement' => '0', 'recentlyUpdatedContentElements' => '0'), 'indexedsearch.' => array('targetPid' => '0')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('entryLevel.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '0', 'override' => '0', 'override.' => array('if.' => array('isTrue' => '0')))), 'levels.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '4', 'override' => '4', 'override.' => array('if.' => array('isTrue' => '4')))), 'excludeUidList.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '0', 'override' => '0', 'override.' => array('if.' => array('isTrue' => '0')))), 'includeSpacer.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '0', 'override' => '0', 'override.' => array('if.' => array('isTrue' => '0')))), 'as' => 'navbarMenu', 'if.' => array('isFalse.' => array('value' => '0'))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '11.' => array('special' => 'list', 'special.' => array('value' => '0'), 'as' => 'navbarMenuRight', 'if.' => array('isTrue' => '0')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '12.' => array('special' => 'browse', 'special.' => array('items' => 'nextsection|next', 'items.' => array('prevnextToSection' => '1')), 'entryLevel' => '1', 'as' => 'browseNext', 'if.' => array('isTrue' => '0')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '13.' => array('special' => 'browse', 'special.' => array('items' => 'prev|prevsection', 'items.' => array('prevnextToSection' => '1')), 'entryLevel' => '1', 'as' => 'browsePrev', 'if.' => array('isTrue' => '0')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('entryLevel.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '1', 'override' => '-1', 'override.' => array('if.' => array('equals' => '99', 'value' => '1')))), 'levels.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '4', 'override' => '4', 'override.' => array('if.' => array('isTrue' => '4')))), 'excludeUidList.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '0', 'override' => '0', 'override.' => array('if.' => array('isTrue' => '0')))), 'includeSpacer.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '0', 'override' => '0', 'override.' => array('if.' => array('isTrue' => '0')))), 'as' => 'subNavigation', 'if.' => array('isTrue.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '10.' => array('value' => '1', 'if.' => array('equals' => 'Sub', 'value' => 'Sub')), 'TEXT', '20.' => array('value' => '1', 'if.' => array('equals' => 'Sub', 'value' => '0')))))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '30.' => array('special' => 'rootline', 'special.' => array('range' => '0|-1'), 'as' => 'breadcrumb', 'if.' => array('isTrue.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '10.' => array('if.' => array('isTrue' => '0')), 'TEXT', '20.' => array('value' => '1', 'if.' => array('isTrue' => '{$bootstrap.config.bottom}')))))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor', '40.' => array('languages' => 'auto', 'as' => 'languageNavigation', 'if.' => array('isTrue' => '0')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '50.' => array('special' => 'list', 'special.' => array('value.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '13', 'override' => '13', 'override.' => array('if.' => array('isTrue' => '13'))))), 'excludeUidList.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '1')), 'levels' => '1', 'as' => 'metaNavigation', 'if.' => array('isTrue' => 'end')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '60.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages'))))), 'as' => 'sectionMenu', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'where' => 'sectionIndex = 1 AND ( colPos = 0 OR colPos > 199 )', 'orderBy' => 'sorting', 'as' => 'content')), 'if.' => array('isTrue.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '10.' => array('value' => '1', 'if.' => array('isTrue' => '0')), 'TEXT', '20.' => array('value' => '1', 'if.' => array('equals' => 'Section', 'value' => 'Sub')), 'TEXT', '30.' => array('value' => '1', 'if.' => array('equals' => 'Section', 'value' => '0')), 'TEXT', '40.' => array('value' => '1', 'if.' => array('isTrue' => '0')))))), 'T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '70.' => array('lastModifiedContentElement' => '0', 'recentlyUpdatedContentElements' => '0', 'if.' => array('value' => '0', 'equals' => '1'), 'isTrue' => '0'), 'T3SBS\\T3sbootstrap\\DataProcessing\\ConfigProcessor')))
in /html/typo3/typo3_src-10.4.37/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 743
                }
                if (!$hooked) {
                    $contentObject = $this->getContentObject($name);
                    if ($contentObject) {
                        $content .= $this->render($contentObject, $conf);
                    } else {
                        // Call hook functions for extra processing
                        if ($name) {
                            if (!empty($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['cObjTypeAndClassDefault'])) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('FLUIDTEMPLATE', array('file' => 'EXT:t3sbootstrap/Resources/Private/Templates/Main.html', 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'settings.' => array('expandedContent' => '0', 'fontawesome.' => array('pagetitle' => '1'), 'codesnippet' => '0', 'lazyLoad' => '0', 'lazyLoadThreshold' => '0', 'webp' => '0', 'pagebrowser.' => array('enable' => '0'), 'backToTopTitle' => 'to top', 'backToTopClass' => 'fa fa-chevron-circle-up fa-4x text-dark', 'backToTopForAllPages' => '0', 'gtm' => '', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'sectionmenuIcons' => '0', 'navbar.' => array('image.' => array('defaultPath' => '/typo3conf/ext/t3sbootstrap/Resources/Public/Images/bootstrap-logo-white.svg', 'width' => '300', 'height' => '50', 'altText' => 'GO7-Group-Logo'), 'subdropdown.' => array('twoColumns' => '30'), 'searchboxLink' => '0', 'feUserName' => '0', 'sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400'), 'pages.' => array('override.' => array('smallColumns' => '', 'breakpoint' => '')), 'config.' => array('uid' => '23', 'company' => 'pixelegg', 'homepageUid' => '1', 'pageTitle' => '0', 'pageTitlealign' => 'center', 'pageTitlecontainer' => 'container', 'pageTitleclass' => 'mb-3', 'metaEnable' => 'end', 'metaValue' => '13', 'metaContainer' => 'container', 'metaClass' => '0', 'metaText' => '<a class="p-2" href="tel:+49"><i class="fas fa-phone mr-1"></i> jetzt anrufen </a>', 'navbarEnable' => 'light', 'navbarEntrylevel' => '0', 'navbarLevels' => '4', 'navbarExcludeuiduist' => '0', 'navbarIncludespacer' => '0', 'navbarSectionmenu' => '0', 'navbarMegamenu' => '1', 'navbarHover' => '0', 'navbarClickableparent' => '1', 'navbarPlusicon' => '{$bootstrap.config.navbarPlusicon}', 'navbarDropdownAnimate' => '0', 'navbarBrand' => 'image', 'navbarbrandAlignment' => 'left', 'navbarImage' => '/fileadmin/setup/images/logo/logo.svg', 'navbarColor' => 'white', 'navbarBackground' => '0', 'navbarTransparent' => '0', 'navbarContainer' => '0', 'navbarInnercontainer' => 'container', 'navbarPlacement' => '0', 'navbarAlignment' => 'right', 'navbarClass' => '0', 'navbarToggler' => 'right', 'navbarAnimatedtoggler' => '0', 'navbarBreakpoint' => 'xl', 'navbarOffcanvas' => '1', 'navbarHeight' => '0', 'navbarSearchbox' => '0', 'navbarLangmenu' => '0', 'navbarShrinkcolorschemes' => 'white', 'navbarShrinkcolor' => 'dark', 'navbarRightMenuUidList' => '0', 'navbarExtraRow' => '0', 'navbarLangFlags' => '1', 'jumbotronEnable' => '1', 'jumbotronBgimage' => 'root', 'jumbotronSlide' => '0', 'jumbotronPosition' => 'below', 'jumbotronContainer' => 'none', 'jumbotronContainerposition' => 'Inside', 'jumbotronClass' => 'm-0 p-0', 'jumbotronCarouselInterval' => '500', 'jumbotronCarouselPause' => '', 'breadcrumbEnable' => '0', 'breadcrumbNotonrootpage' => '1', 'breadcrumbFaicon' => '1', 'breadcrumbCorner' => '0', 'breadcrumbBottom' => '0', 'breadcrumbPosition' => 'belowJum', 'breadcrumbContainer' => 'container', 'breadcrumbContainerposition' => 'inside', 'breadcrumbClass' => '0', 'sidebarEnable' => 'Sub', 'sidebarRightenable' => '0', 'sidebarLevels' => '4', 'sidebarEntrylevel' => '1', 'sidebarExcludeuiduist' => '0', 'sidebarIncludespacer' => '0', 'sidebarSectionMobile' => '0', 'footerEnable' => '1', 'footerFluid' => '{$bootstrap.config.footerFluid}', 'footerSlide' => '1', 'footerSticky' => '0', 'footerContainer' => 'container', 'footerContainerposition' => 'Inside', 'footerClass' => 'bg-dark text-white border-top border-dark', 'footerPid' => '6', 'expandedcontentEnabletop' => '0', 'expandedcontentSlidetop' => '0', 'expandedcontentContainerpositiontop' => 'Inside', 'expandedcontentContainertop' => 'none', 'expandedcontentClasstop' => '0', 'expandedcontentEnablebottom' => '1', 'expandedcontentSlidebottom' => '0', 'expandedcontentContainerpositionbottom' => 'Inside', 'expandedcontentContainerbottom' => 'none', 'expandedcontentClassbottom' => '0', 'generalRootline' => '1', 'contentOnlyOnRootpage' => '0', 'jqueryHeader' => '1', 'compress' => '0', 'disablePrefixComment' => '1', 'containerError' => '0', 'slideLeftAside' => '0', 'slideRightAside' => '0', 'pageContentExtraClass' => '0', 'bodyExtraClass' => '0', 'asideExtraClass' => '0', 'mainExtraClass' => '0', 'globalPaddingTop' => '0', 'stickyFooterExtraPadding' => '0', 'contentMarginTop' => '0', 'loadingSpinner' => '0', 'loadingSpinnerColor' => 'primary', 'lightboxSelection' => '2', 'magnifying' => '1', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sectionmenuStickyTop' => '0', 'backgroundImageEnable' => '0', 'backgroundImageSlide' => '0', 'shrinkingNavPadding' => '5', 'sidebarMenuPosition' => 'above', 'langMenuWithFaIcon' => '1', 'subheaderColor' => 'secondary', 'dateFormat' => 'd.m.Y', 'favicon' => '0', 'faLinkIcons' => '1', 'cardFlipperOnClick' => '0', 'lastModifiedContentElement' => '0', 'recentlyUpdatedContentElements' => '0'), 'indexedsearch.' => array('targetPid' => '0')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('entryLevel.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '0', 'override' => '0', 'override.' => array('if.' => array('isTrue' => '0')))), 'levels.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '4', 'override' => '4', 'override.' => array('if.' => array('isTrue' => '4')))), 'excludeUidList.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '0', 'override' => '0', 'override.' => array('if.' => array('isTrue' => '0')))), 'includeSpacer.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '0', 'override' => '0', 'override.' => array('if.' => array('isTrue' => '0')))), 'as' => 'navbarMenu', 'if.' => array('isFalse.' => array('value' => '0'))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '11.' => array('special' => 'list', 'special.' => array('value' => '0'), 'as' => 'navbarMenuRight', 'if.' => array('isTrue' => '0')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '12.' => array('special' => 'browse', 'special.' => array('items' => 'nextsection|next', 'items.' => array('prevnextToSection' => '1')), 'entryLevel' => '1', 'as' => 'browseNext', 'if.' => array('isTrue' => '0')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '13.' => array('special' => 'browse', 'special.' => array('items' => 'prev|prevsection', 'items.' => array('prevnextToSection' => '1')), 'entryLevel' => '1', 'as' => 'browsePrev', 'if.' => array('isTrue' => '0')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('entryLevel.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '1', 'override' => '-1', 'override.' => array('if.' => array('equals' => '99', 'value' => '1')))), 'levels.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '4', 'override' => '4', 'override.' => array('if.' => array('isTrue' => '4')))), 'excludeUidList.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '0', 'override' => '0', 'override.' => array('if.' => array('isTrue' => '0')))), 'includeSpacer.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '0', 'override' => '0', 'override.' => array('if.' => array('isTrue' => '0')))), 'as' => 'subNavigation', 'if.' => array('isTrue.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '10.' => array('value' => '1', 'if.' => array('equals' => 'Sub', 'value' => 'Sub')), 'TEXT', '20.' => array('value' => '1', 'if.' => array('equals' => 'Sub', 'value' => '0')))))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '30.' => array('special' => 'rootline', 'special.' => array('range' => '0|-1'), 'as' => 'breadcrumb', 'if.' => array('isTrue.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '10.' => array('if.' => array('isTrue' => '0')), 'TEXT', '20.' => array('value' => '1', 'if.' => array('isTrue' => '{$bootstrap.config.bottom}')))))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor', '40.' => array('languages' => 'auto', 'as' => 'languageNavigation', 'if.' => array('isTrue' => '0')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '50.' => array('special' => 'list', 'special.' => array('value.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '13', 'override' => '13', 'override.' => array('if.' => array('isTrue' => '13'))))), 'excludeUidList.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '1')), 'levels' => '1', 'as' => 'metaNavigation', 'if.' => array('isTrue' => 'end')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '60.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages'))))), 'as' => 'sectionMenu', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'where' => 'sectionIndex = 1 AND ( colPos = 0 OR colPos > 199 )', 'orderBy' => 'sorting', 'as' => 'content')), 'if.' => array('isTrue.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '10.' => array('value' => '1', 'if.' => array('isTrue' => '0')), 'TEXT', '20.' => array('value' => '1', 'if.' => array('equals' => 'Section', 'value' => 'Sub')), 'TEXT', '30.' => array('value' => '1', 'if.' => array('equals' => 'Section', 'value' => '0')), 'TEXT', '40.' => array('value' => '1', 'if.' => array('isTrue' => '0')))))), 'T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '70.' => array('lastModifiedContentElement' => '0', 'recentlyUpdatedContentElements' => '0', 'if.' => array('value' => '0', 'equals' => '1'), 'isTrue' => '0'), 'T3SBS\\T3sbootstrap\\DataProcessing\\ConfigProcessor')), '10')
in /html/typo3/typo3_src-10.4.37/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 688
        foreach ($sKeyArray as $theKey) {
            $theValue = $setup[$theKey];
            if ((int)$theKey && strpos($theKey, '.') === false) {
                $conf = $setup[$theKey . '.'] ?? [];
                $content .= $this->cObjGetSingle($theValue, $conf, $addKey . $theKey);
            }
        }
        return $content;
    }
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGet(array('meta.' => array('viewport' => 'width=device-width, initial-scale=1', 'robots' => 'noindex,nofollow'), 'shortcutIcon' => 'fileadmin/setup/images/favicon.png', 'LOAD_REGISTER', '1.' => array('newsTitle.' => array('cObject' => 'RECORDS', 'cObject.' => array('source' => '{GP:tx_news_pi1|news}', 'source.' => array('insertData' => '1'), 'tables' => 'tx_news_domain_model_news', 'conf.' => array('tx_news_domain_model_news' => 'TEXT', 'tx_news_domain_model_news.' => array('field' => 'title'))))), 'bodyTagCObject' => 'COA', 'bodyTagCObject.' => array('wrap' => '<body |>', 'TEXT', '10.' => array('data' => 'TSFE:id', 'noTrimWrap' => '| id="page-|"|'), 'COA', '20.' => array('stdWrap.' => array('noTrimWrap' => '| class="|"|'), 'TEXT', '10.' => array('noTrimWrap' => '|||', 'value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1')), 'case' => 'lower')), 'TEXT', '20.' => array('data' => 'page:layout', 'noTrimWrap' => '| layout-||', 'if.' => array('isTrue.' => array('data' => 'page:layout'))), 'TEXT', '30.' => array('value' => '0', 'noTrimWrap' => '| ||', 'if.' => array('isTrue' => '0')), 'TEXT', '40.' => array('value' => 'bgi', 'noTrimWrap' => '| ||', 'if.' => array('isTrue' => '0')), 'TEXT', '50.' => array('value' => 'xl', 'noTrimWrap' => '| ||')), 'COA', '30.' => array('stdWrap.' => array('noTrimWrap' => '| style="|"|'), 'TEXT', '10.' => array('value' => '0', 'wrap' => 'padding-top:|px;'), 'if.' => array('isTrue' => '0'), 'TEXT', '20.' => array('value' => 'position:relative;', 'if.' => array('isTrue' => '0'))), 'TEXT', '40.' => array('value' => 'xl', 'noTrimWrap' => '| data-navbar-breakpoint="|"|'), 'TEXT', '50.' => array('value' => '', 'noTrimWrap' => '| data-navbar-breakpointWidth="|"|', 'if.' => array('isTrue' => '')), 'TEXT', '60.' => array('value' => '130', 'noTrimWrap' => '| data-bs-spy="scroll" data-bs-target="#main-navbar" data-bs-offset="|" tabindex="0"|', 'if.' => array('isTrue' => '0')), 'TEXT', '70.' => array('value' => 'true', 'noTrimWrap' => '| data-bs-no-jquery="|"|', 'if.' => array('isTrue' => '0'))), 'includeCSS.' => array('bootstrapCustom' => 'uploads/tx_t3sbootstrap/bootstrap.scss', 'bootstrapCustom.' => array('forceOnTop' => '1'), 'cookieconsentCss' => '/fileadmin/T3SB/Resources/Public/CSS/cookieconsent.min.css', 'cookieconsentCss.' => array('if.' => array('isTrue' => '0')), 't3sbootstrap' => 'EXT:t3sbootstrap/Resources/Public/Styles/t3sbootstrap.css', 't3sfontawesomeLink' => 'EXT:t3sbootstrap/Resources/Public/Contrib/Fontawesome/css/fontawesomeLink.css', 't3sfontawesomeLink.' => array('if.' => array('value' => '1', 'equals' => '0')), 't3sfontawesomeProLink' => 'EXT:t3sbootstrap/Resources/Public/Contrib/Fontawesome/css/fontawesomeProLink.css', 't3sfontawesomeProLink.' => array('if.' => array('value' => '2', 'equals' => '0')), 't3sfontawesomeMinLink' => 'EXT:t3sbootstrap/Resources/Public/Contrib/Fontawesome/css/fontawesomeMinLink.css', 't3sfontawesomeMinLink.' => array('if.' => array('isFalse' => '0')), 'ckefontawesome' => 'https://use.fontawesome.com/releases/v6.0.0/css/all.css', 'ckefontawesome.' => array('external' => '1', 'if.' => array('isTrue' => '1')), 'tx_counter' => 'EXT:counter/Resources/Public/Css/Counter.min.css', 'tx_rxshariff_shariff' => 'EXT:rx_shariff/Resources/Public/Css/shariff.complete.css', 'tx_iconcontent_fontawesome' => 'EXT:icon_content/Resources/Public/Libraries/fontawesome-free-5.13.0/css/all.min.css', 'tx_iconcontent_fontawesome.' => array('if.' => array('isTrue' => '1')), 'glide' => 'EXT:showcase/Resources/Public/Libs/glide/dist/css/glide.core.min.css', 'glidetheme' => 'EXT:showcase/Resources/Public/Libs/glide/dist/css/glide.theme.min.css', 'showcase' => 'EXT:showcase/Resources/Public/Css/style.css', 'focuspoint' => 'typo3conf/ext/focuspoint/Resources/Public/jquery-focuspoint-2015-08-31/css/focuspoint.css', 'dp_cookieconsent' => 'EXT:dp_cookieconsent/Resources/Public/css/dp_cookieconsent.css', 'projektcss' => 'fileadmin/setup/projekt-scss/projekt.scss', 'projektcss.' => array('linenumber' => 'true')), 'includeJSFooterlibs.' => array('popper' => '/fileadmin/T3SB/Resources/Public/JS/popper.js', 'bootstrap' => '/fileadmin/T3SB/Resources/Public/JS/bootstrap.min.js', 'readmore' => 'fileadmin/setup/js/readmore.js', 'gsap' => 'fileadmin/setup/js/gsap/gsap.min.js', 'gsapeffect' => 'fileadmin/setup/js/parallaxmouseeffect.js', 'scrolling' => 'fileadmin/setup/js/scrollFadeInOut.js', 'scrolltriger' => 'fileadmin/setup/js/gsap/ScrollTrigger.min.js'), 'includeJSFooter.' => array('cookieconsentJs' => '/fileadmin/T3SB/Resources/Public/JS/cookieconsent.min.js', 'cookieconsentJs.' => array('if.' => array('isTrue' => '0')), 't3sbjqueryeasing' => '/fileadmin/T3SB/Resources/Public/JS/jquery.easing.min.js', 't3sbjqueryeasing.' => array('forceOnTop' => '1', 'if.' => array('isFalse' => '0')), 'lazyload' => '/fileadmin/T3SB/Resources/Public/JS/lazyload.min.js', 'lazyload.' => array('if.' => array('isTrue' => '0')), 'picturefill' => '/fileadmin/T3SB/Resources/Public/JS/picturefill.min.js', 'picturefill.' => array('if.' => array('isTrue' => '1')), 'modernizr' => 'EXT:t3sbootstrap/Resources/Public/Contrib/Modernizr/modernizr.js', 'modernizr.' => array('if.' => array('isTrue' => '0')), 'navbarSlide' => 'EXT:t3sbootstrap/Resources/Public/Scripts/slideNavbar.js', 'navbarSlide.' => array('if.' => array('value' => 'slide', 'equals' => 'light')), 'tx_counter_jquery' => 'EXT:counter/Resources/Public/Libraries/jquery-3.4.1/jquery-3.4.1.min.js', 'tx_counter_jquery.' => array('if.' => array('isTrue' => '0')), 'tx_counter_jqueryui' => 'EXT:counter/Resources/Public/Libraries/jqueryui-1.12.1/jquery-ui-1.12.1.min.js', 'tx_counter_jqueryui.' => array('if.' => array('isTrue' => '0')), 'tx_counter' => 'EXT:counter/Resources/Public/JavaScript/Counter.min.js', 'tx_counter.' => array('async' => '1'), 'tx_rxshariff_shariff' => 'EXT:rx_shariff/Resources/Public/JavaScript/shariff.min.js', 'showcase_isotope' => 'EXT:showcase/Resources/Public/Libs/isotope.pkgd.min.js', 'showcase_isotope_cbc' => 'EXT:showcase/Resources/Public/Libs/isotope.cellsByColumn.js', 'showcase_imagesloaded' => 'EXT:showcase/Resources/Public/Libs/imagesloaded.pkgd.min.js', 'showcase_ajax' => 'EXT:showcase/Resources/Public/Js/Classes/AjaxLoader.js', 'showcase_bootstrap' => 'EXT:showcase/Resources/Public/Js/Bootstrap4/Showcase.js', 'glide' => 'EXT:showcase/Resources/Public/Libs/glide/dist/glide.min.js', 'focuspoint' => 'typo3conf/ext/focuspoint/Resources/Public/jquery-focuspoint-2015-08-31/js/jquery.focuspoint.min.js', 'focuspoint.' => array('disableCompression' => '1'), 'dp_cookieconsent' => 'EXT:dp_cookieconsent/Resources/Public/JavaScript/dp_cookieconsent.js', 'newsload' => 'fileadmin/setup/js/jquery.loadAktuelles.js'), 'footerData.' => array('TEXT', '61.' => array('value' => '<script src="/fileadmin/T3SB/Resources/Public/JS/fontawesome.min.js" data-auto-replace-svg="nest"></script>', 'if.' => array('value' => '1', 'equals' => '0')), 'TEXT', '62.' => array('value' => '<script src="/fileadmin/T3SB/FA5Pro/js/all.min.js" data-auto-replace-svg="nest"></script>', 'if.' => array('value' => '2', 'equals' => '0')), 'TEXT', '300.' => array('data' => 'getIndpEnv:TYPO3_REQUEST_URL', 'wrap' => '<script>const SHOWCASE = { baseurl: \'|\'};</script>'), 'COA', '998.' => array('FLUIDTEMPLATE', '20.' => array('file' => 'EXT:dp_cookieconsent/Resources/Private/Layouts/Cookie.html', 'templateName' => 'Cookie', 'templateRootPaths.' => array('EXT:dp_cookieconsent/Resources/Private/Templates/', ''), 'partialRootPaths.' => array('EXT:dp_cookieconsent/Resources/Private/Partials/', ''), 'layoutRootPaths.' => array('EXT:dp_cookieconsent/Resources/Private/Layouts/', ''), 'settings.' => array('url' => '0', 'target' => '_blank', 'theme' => 'wire', 'position' => 'bottom-left', 'type' => 'opt-out', 'revokable' => 'true', 'reloadOnRevoke' => 'false', 'checkboxes.' => array('statistics' => 'true', 'marketing' => 'false'), 'overlay.' => array('notice' => 'true', 'box.' => array('background' => '#FFFFFF', 'text' => '#303241'), 'button.' => array('background' => '#FFFFFF', 'text' => '#303241')), 'palette.' => array('popup.' => array('background' => '#FFFFFF', 'text' => '#303241'), 'button.' => array('background' => '#303241', 'text' => '#FFFFFF'))), 'dataProcessing.' => array('DirkPersky\\DpCookieconsent\\DataProcessing\\CookieScriptsProcessor', '10.' => array('as' => 'dp_cookie_scripts', 'pid' => '0'))))), 'jsInline.' => array('5.' => array('if.' => array('isTrue' => '0'))), 'includeJSLibs.' => array('jquery' => '/fileadmin/T3SB/Resources/Public/JS/jquery.min.js', 'jquery.' => array('forceOnTop' => '1', 'if.' => array('isFalse' => '0'))), 'FLUIDTEMPLATE', '10.' => array('file' => 'EXT:t3sbootstrap/Resources/Private/Templates/Main.html', 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/', 'fileadmin/setup/Templates/t3sbootstrap/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/', 'fileadmin/setup/Templates/t3sbootstrap/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'settings.' => array('expandedContent' => '0', 'fontawesome.' => array('pagetitle' => '1'), 'codesnippet' => '0', 'lazyLoad' => '0', 'lazyLoadThreshold' => '0', 'webp' => '0', 'pagebrowser.' => array('enable' => '0'), 'backToTopTitle' => 'to top', 'backToTopClass' => 'fa fa-chevron-circle-up fa-4x text-dark', 'backToTopForAllPages' => '0', 'gtm' => '', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'sectionmenuIcons' => '0', 'navbar.' => array('image.' => array('defaultPath' => '/typo3conf/ext/t3sbootstrap/Resources/Public/Images/bootstrap-logo-white.svg', 'width' => '300', 'height' => '50', 'altText' => 'GO7-Group-Logo'), 'subdropdown.' => array('twoColumns' => '30'), 'searchboxLink' => '0', 'feUserName' => '0', 'sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'xxl' => '1400'), 'pages.' => array('override.' => array('smallColumns' => '', 'breakpoint' => '')), 'config.' => array('uid' => '23', 'company' => 'pixelegg', 'homepageUid' => '1', 'pageTitle' => '0', 'pageTitlealign' => 'center', 'pageTitlecontainer' => 'container', 'pageTitleclass' => 'mb-3', 'metaEnable' => 'end', 'metaValue' => '13', 'metaContainer' => 'container', 'metaClass' => '0', 'metaText' => '<a class="p-2" href="tel:+49"><i class="fas fa-phone mr-1"></i> jetzt anrufen </a>', 'navbarEnable' => 'light', 'navbarEntrylevel' => '0', 'navbarLevels' => '4', 'navbarExcludeuiduist' => '0', 'navbarIncludespacer' => '0', 'navbarSectionmenu' => '0', 'navbarMegamenu' => '1', 'navbarHover' => '0', 'navbarClickableparent' => '1', 'navbarPlusicon' => '{$bootstrap.config.navbarPlusicon}', 'navbarDropdownAnimate' => '0', 'navbarBrand' => 'image', 'navbarbrandAlignment' => 'left', 'navbarImage' => '/fileadmin/setup/images/logo/logo.svg', 'navbarColor' => 'white', 'navbarBackground' => '0', 'navbarTransparent' => '0', 'navbarContainer' => '0', 'navbarInnercontainer' => 'container', 'navbarPlacement' => '0', 'navbarAlignment' => 'right', 'navbarClass' => '0', 'navbarToggler' => 'right', 'navbarAnimatedtoggler' => '0', 'navbarBreakpoint' => 'xl', 'navbarOffcanvas' => '1', 'navbarHeight' => '0', 'navbarSearchbox' => '0', 'navbarLangmenu' => '0', 'navbarShrinkcolorschemes' => 'white', 'navbarShrinkcolor' => 'dark', 'navbarRightMenuUidList' => '0', 'navbarExtraRow' => '0', 'navbarLangFlags' => '1', 'jumbotronEnable' => '1', 'jumbotronBgimage' => 'root', 'jumbotronSlide' => '0', 'jumbotronPosition' => 'below', 'jumbotronContainer' => 'none', 'jumbotronContainerposition' => 'Inside', 'jumbotronClass' => 'm-0 p-0', 'jumbotronCarouselInterval' => '500', 'jumbotronCarouselPause' => '', 'breadcrumbEnable' => '0', 'breadcrumbNotonrootpage' => '1', 'breadcrumbFaicon' => '1', 'breadcrumbCorner' => '0', 'breadcrumbBottom' => '0', 'breadcrumbPosition' => 'belowJum', 'breadcrumbContainer' => 'container', 'breadcrumbContainerposition' => 'inside', 'breadcrumbClass' => '0', 'sidebarEnable' => 'Sub', 'sidebarRightenable' => '0', 'sidebarLevels' => '4', 'sidebarEntrylevel' => '1', 'sidebarExcludeuiduist' => '0', 'sidebarIncludespacer' => '0', 'sidebarSectionMobile' => '0', 'footerEnable' => '1', 'footerFluid' => '{$bootstrap.config.footerFluid}', 'footerSlide' => '1', 'footerSticky' => '0', 'footerContainer' => 'container', 'footerContainerposition' => 'Inside', 'footerClass' => 'bg-dark text-white border-top border-dark', 'footerPid' => '6', 'expandedcontentEnabletop' => '0', 'expandedcontentSlidetop' => '0', 'expandedcontentContainerpositiontop' => 'Inside', 'expandedcontentContainertop' => 'none', 'expandedcontentClasstop' => '0', 'expandedcontentEnablebottom' => '1', 'expandedcontentSlidebottom' => '0', 'expandedcontentContainerpositionbottom' => 'Inside', 'expandedcontentContainerbottom' => 'none', 'expandedcontentClassbottom' => '0', 'generalRootline' => '1', 'contentOnlyOnRootpage' => '0', 'jqueryHeader' => '1', 'compress' => '0', 'disablePrefixComment' => '1', 'containerError' => '0', 'slideLeftAside' => '0', 'slideRightAside' => '0', 'pageContentExtraClass' => '0', 'bodyExtraClass' => '0', 'asideExtraClass' => '0', 'mainExtraClass' => '0', 'globalPaddingTop' => '0', 'stickyFooterExtraPadding' => '0', 'contentMarginTop' => '0', 'loadingSpinner' => '0', 'loadingSpinnerColor' => 'primary', 'lightboxSelection' => '2', 'magnifying' => '1', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sectionmenuStickyTop' => '0', 'backgroundImageEnable' => '0', 'backgroundImageSlide' => '0', 'shrinkingNavPadding' => '5', 'sidebarMenuPosition' => 'above', 'langMenuWithFaIcon' => '1', 'subheaderColor' => 'secondary', 'dateFormat' => 'd.m.Y', 'favicon' => '0', 'faLinkIcons' => '1', 'cardFlipperOnClick' => '0', 'lastModifiedContentElement' => '0', 'recentlyUpdatedContentElements' => '0'), 'indexedsearch.' => array('targetPid' => '0')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('entryLevel.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '0', 'override' => '0', 'override.' => array('if.' => array('isTrue' => '0')))), 'levels.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '4', 'override' => '4', 'override.' => array('if.' => array('isTrue' => '4')))), 'excludeUidList.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '0', 'override' => '0', 'override.' => array('if.' => array('isTrue' => '0')))), 'includeSpacer.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '0', 'override' => '0', 'override.' => array('if.' => array('isTrue' => '0')))), 'as' => 'navbarMenu', 'if.' => array('isFalse.' => array('value' => '0'))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '11.' => array('special' => 'list', 'special.' => array('value' => '0'), 'as' => 'navbarMenuRight', 'if.' => array('isTrue' => '0')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '12.' => array('special' => 'browse', 'special.' => array('items' => 'nextsection|next', 'items.' => array('prevnextToSection' => '1')), 'entryLevel' => '1', 'as' => 'browseNext', 'if.' => array('isTrue' => '0')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '13.' => array('special' => 'browse', 'special.' => array('items' => 'prev|prevsection', 'items.' => array('prevnextToSection' => '1')), 'entryLevel' => '1', 'as' => 'browsePrev', 'if.' => array('isTrue' => '0')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('entryLevel.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '1', 'override' => '-1', 'override.' => array('if.' => array('equals' => '99', 'value' => '1')))), 'levels.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '4', 'override' => '4', 'override.' => array('if.' => array('isTrue' => '4')))), 'excludeUidList.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '0', 'override' => '0', 'override.' => array('if.' => array('isTrue' => '0')))), 'includeSpacer.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '0', 'override' => '0', 'override.' => array('if.' => array('isTrue' => '0')))), 'as' => 'subNavigation', 'if.' => array('isTrue.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '10.' => array('value' => '1', 'if.' => array('equals' => 'Sub', 'value' => 'Sub')), 'TEXT', '20.' => array('value' => '1', 'if.' => array('equals' => 'Sub', 'value' => '0')))))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '30.' => array('special' => 'rootline', 'special.' => array('range' => '0|-1'), 'as' => 'breadcrumb', 'if.' => array('isTrue.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '10.' => array('if.' => array('isTrue' => '0')), 'TEXT', '20.' => array('value' => '1', 'if.' => array('isTrue' => '{$bootstrap.config.bottom}')))))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor', '40.' => array('languages' => 'auto', 'as' => 'languageNavigation', 'if.' => array('isTrue' => '0')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '50.' => array('special' => 'list', 'special.' => array('value.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '13', 'override' => '13', 'override.' => array('if.' => array('isTrue' => '13'))))), 'excludeUidList.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '1')), 'levels' => '1', 'as' => 'metaNavigation', 'if.' => array('isTrue' => 'end')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '60.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages'))))), 'as' => 'sectionMenu', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'where' => 'sectionIndex = 1 AND ( colPos = 0 OR colPos > 199 )', 'orderBy' => 'sorting', 'as' => 'content')), 'if.' => array('isTrue.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '10.' => array('value' => '1', 'if.' => array('isTrue' => '0')), 'TEXT', '20.' => array('value' => '1', 'if.' => array('equals' => 'Section', 'value' => 'Sub')), 'TEXT', '30.' => array('value' => '1', 'if.' => array('equals' => 'Section', 'value' => '0')), 'TEXT', '40.' => array('value' => '1', 'if.' => array('isTrue' => '0')))))), 'T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '70.' => array('lastModifiedContentElement' => '0', 'recentlyUpdatedContentElements' => '0', 'if.' => array('value' => '0', 'equals' => '1'), 'isTrue' => '0'), 'T3SBS\\T3sbootstrap\\DataProcessing\\ConfigProcessor')), 'cssInline.' => array('TEXT', '1569833847.' => array('value' => '.counter-invisible{opacity:0}'), 'TEXT', '1001.' => array('value' => '#pageBackground {width:100%;height:100%;overflow:hidden;position:absolute;}'), 'LOAD_REGISTER', '1.' => array('curl1' => '{', 'curl2' => '}'), 'FILES', '10.' => array('references.' => array('table' => 'pages', 'uid.' => array('data' => 'page:uid'), 'fieldName' => 'media'), 'renderObj' => 'IMG_RESOURCE', 'renderObj.' => array('file.' => array('import.' => array('data' => 'file:current:uid'), 'treatIdAsReference' => '1'), 'stdWrap.' => array('dataWrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('data' => 'register:FILE_NUM_CURRENT'), 'TEXT', '0.' => array('value' => 'background-image: url(|);', 'postCObject' => 'TEXT', 'postCObject.' => array('value' => 'background-position: left {fp:xp_positive}% top {fp:yp_positive}%;', 'if.' => array('isTrue.' => array('data' => 'fp:xp'))), 'wrap' => '.bgimg {register:curl1} | {register:curl2}'), 'TEXT', '1.' => array('value' => 'background-image: url(|);', 'postCObject' => 'TEXT', 'postCObject.' => array('value' => 'background-position: left {fp:xp_positive}% top {fp:yp_positive}%;', 'if.' => array('isTrue.' => array('data' => 'fp:xp'))), 'wrap' => '.bgimg {register:curl1} | {register:curl2}', 'outerWrap' => '@media only screen and (min-width: 600px) {register:curl1} | {register:curl2}'), 'TEXT', '2.' => array('value' => 'background-image: url(|);', 'postCObject' => 'TEXT', 'postCObject.' => array('value' => 'background-position: left {fp:xp_positive}% top {fp:yp_positive}%;', 'if.' => array('isTrue.' => array('data' => 'fp:xp'))), 'wrap' => '.bgimg {register:curl1} | {register:curl2}', 'outerWrap' => '@media only screen and (min-width:1024px) {register:curl1} | {register:curl2}'))), 'wrap' => '/|')), 'begin' => '0', 'maxItems' => '3', 'stdWrap.' => array('outerWrap' => ' /* background-image with focus point*/ | /* */ '))), 'jsFooterInline.' => array('TEXT', '1001.' => array('value' => 'jQuery(document).ready(function(){ var focusImages = jQuery(\'.focuspoint\'); if(focusImages.length) { focusImages.focusPoint(); } });')), 'headerData.' => array('657.' => array('10.' => array('stdWrap.' => array('replacement.' => array('10.' => array('search' => '<script', 'replace' => '<script data-ignore="1" data-cookieconsent="statistics" type="text/plain"'), '20.' => array('search' => 'src=', 'replace' => 'data-src='))))), 'COA', '998.' => array('COA', '10.' => array('wrap' => '<script data-ignore="1" data-cookieconsent="statistics" type="text/plain">|</script>', 'required' => '1')), 'TEXT', '10.' => array('value' => '<link rel="apple-touch-icon" type="image/png" href="fileadmin/setup/images/touch-icon/touch-icon-60x60.png"/>'), 'TEXT', '20.' => array('value' => '<link rel="apple-touch-icon" sizes="72x72" type="image/png" href="fileadmin/setup/images/touch-icon/touch-icon-72x72.png"/>'), 'TEXT', '30.' => array('value' => '<link rel="apple-touch-icon" sizes="114x114" type="image/png" href="fileadmin/setup/images/touch-icon/touch-icon-114x114.png"/>'), 'TEXT', '40.' => array('value' => '<link rel="apple-touch-icon" sizes="144x144" type="image/png" href="fileadmin/setup/images/touch-icon/touch-icon-144x144.png"/>'), 'TEXT', '60.' => array('value' => '<meta name="apple-mobile-web-app-status-bar-style" content="black">'), 'TEXT', '50.' => array('value' => '<link rel="manifest" href="fileadmin/setup/manifest/manifest.json">')), 'javascriptLibs.' => array('jQuery' => '0', 'jQuery.' => array('version' => 'latest', 'source' => 'local')), 'includeJS.' => array('jquery' => 'fileadmin/T3SB/Resources/Public/JS/jquery.min.js')))
in /html/typo3/typo3_src-10.4.37/typo3/sysext/frontend/Classes/Http/RequestHandler.php line 232
     * @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(object(TYPO3\CMS\Frontend\Controller\TypoScriptFrontendController))
in /html/typo3/typo3_src-10.4.37/typo3/sysext/frontend/Classes/Http/RequestHandler.php line 198
    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(object(TYPO3\CMS\Frontend\Controller\TypoScriptFrontendController), object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-10.4.37/typo3/sysext/frontend/Classes/Http/RequestHandler.php line 134
            // 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(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-10.4.37/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(object(TYPO3\CMS\Core\Http\ServerRequest), object(TYPO3\CMS\Frontend\Http\RequestHandler))
in /html/typo3/typo3_src-10.4.37/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/html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$ec->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3conf/ext/typoscript_rendering/Classes/Middleware/TypoScriptRenderingMiddleware.php line 43
    {
        $frontendController = $GLOBALS['TSFE'];
        $requestedContentType = $frontendController->config['config']['contentType'] ?? self::defaultContentType;
        if (!$frontendController->isGeneratePage() || !isset($request->getQueryParams()[self::argumentNamespace])) {
            return $this->amendContentType($handler->handle($request), $requestedContentType);
        }
        $this->ensureRequiredEnvironment();

        $frontendController->config['config']['debug'] = 0;
at Helhum\TyposcriptRendering\Middleware\TypoScriptRenderingMiddleware->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$ec))
in /html/typo3/typo3_src-10.4.37/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/html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$ec->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3conf/ext/dp_cookieconsent/Classes/Middleware/PlainRenderingMiddleware.php line 30
    {
        $frontendController = $GLOBALS['TSFE'];
        // check for default handling
        if (!$frontendController->isGeneratePage() || !isset($request->getQueryParams()[self::namespace])) {
            return $handler->handle($request);
        }
        // prepare rendering overwrite
        $frontendController->config['config']['debug'] = 0;
        $frontendController->config['config']['disableAllHeaderCode'] = 1;
at DirkPersky\DpCookieconsent\Middleware\PlainRenderingMiddleware->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$ec))
in /html/typo3/typo3_src-10.4.37/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/html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$ec->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-10.4.37/typo3/sysext/adminpanel/Classes/Middleware/AdminPanelDataPersister.php line 45
     * @return ResponseInterface
     */
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $response = $handler->handle($request);
        if (
            !($response instanceof NullResponse)
            && $GLOBALS['TSFE'] instanceof TypoScriptFrontendController
            && $GLOBALS['TSFE']->isOutputting(true)
at TYPO3\CMS\Adminpanel\Middleware\AdminPanelDataPersister->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$ec))
in /html/typo3/typo3_src-10.4.37/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/html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$ec->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-10.4.37/typo3/sysext/adminpanel/Classes/Middleware/AdminPanelRenderer.php line 47
     * @return ResponseInterface
     */
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $response = $handler->handle($request);
        if (
            !($response instanceof NullResponse)
            && $GLOBALS['TSFE'] instanceof TypoScriptFrontendController
            && $GLOBALS['TSFE']->isOutputting(true)
at TYPO3\CMS\Adminpanel\Middleware\AdminPanelRenderer->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$ec))
in /html/typo3/typo3_src-10.4.37/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/html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$ec->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-10.4.37/typo3/sysext/frontend/Classes/Middleware/ContentLengthResponseHeader.php line 47
     * @return ResponseInterface
     */
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $response = $handler->handle($request);
        if (
            !($response instanceof NullResponse)
            && $GLOBALS['TSFE'] instanceof TypoScriptFrontendController
            && $GLOBALS['TSFE']->isOutputting(true)) {
at TYPO3\CMS\Frontend\Middleware\ContentLengthResponseHeader->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$ec))
in /html/typo3/typo3_src-10.4.37/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/html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$ec->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-10.4.37/typo3/sysext/frontend/Classes/Middleware/ShortcutAndMountPointRedirect.php line 69
                return new RedirectResponse($externalUrl, 303);
            }
        }

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

    protected function getRedirectUri(ServerRequestInterface $request): ?string
    {
at TYPO3\CMS\Frontend\Middleware\ShortcutAndMountPointRedirect->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$ec))
in /html/typo3/typo3_src-10.4.37/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/html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$ec->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-10.4.37/typo3/sysext/frontend/Classes/Middleware/PrepareTypoScriptFrontendRendering.php line 86
                $this->convertCharsetRecursivelyToUtf8($parsedBody, $this->controller->metaCharset);
                $request = $request->withParsedBody($parsedBody);
            }
        }
        return $handler->handle($request);
    }

    /**
     * Small helper function to convert charsets for arrays to UTF-8
at TYPO3\CMS\Frontend\Middleware\PrepareTypoScriptFrontendRendering->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$ec))
in /html/typo3/typo3_src-10.4.37/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/html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$ec->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3conf/ext/maps2/Classes/Middleware/InitFeSessionMiddleware.php line 80
            ) {
                $this->getTypoScriptFrontendController()->fe_user->setAndSaveSessionData('mapProviderRequestsAllowedForMaps2', 1);
            }
        }
        return $handler->handle($request);
    }

    /**
     * @return TypoScriptFrontendController|null
at JWeiland\Maps2\Middleware\InitFeSessionMiddleware->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$ec))
in /html/typo3/typo3_src-10.4.37/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/html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$ec->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-10.4.37/typo3/sysext/frontend/Classes/Middleware/TypoScriptFrontendInitialization.php line 108
        }

        // Make TSFE globally available
        $GLOBALS['TSFE'] = $controller;
        return $handler->handle($request);
    }

    /**
     * Register the backend user as aspect
at TYPO3\CMS\Frontend\Middleware\TypoScriptFrontendInitialization->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$ec))
in /html/typo3/typo3_src-10.4.37/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/html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$ec->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-10.4.37/typo3/sysext/frontend/Classes/Middleware/PageArgumentValidator.php line 131
            }
        }

        $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(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$ec))
in /html/typo3/typo3_src-10.4.37/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/html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$ec->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-10.4.37/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(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$ec))
in /html/typo3/typo3_src-10.4.37/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/html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$ec->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-10.4.37/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(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$ec))
in /html/typo3/typo3_src-10.4.37/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/html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$ec->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-10.4.37/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(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$ec))
in /html/typo3/typo3_src-10.4.37/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/html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$ec->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-10.4.37/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(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$ec))
in /html/typo3/typo3_src-10.4.37/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/html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$ec->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-10.4.37/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(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$ec))
in /html/typo3/typo3_src-10.4.37/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/html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$ec->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-10.4.37/typo3/sysext/redirects/Classes/Http/Middleware/RedirectHandler.php line 102
                unset($GLOBALS['TYPO3_REQUEST']);
            }
        }

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

    /**
     * Creates a PSR-7 compatible Response object
at TYPO3\CMS\Redirects\Http\Middleware\RedirectHandler->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$ec))
in /html/typo3/typo3_src-10.4.37/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/html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$ec->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-10.4.37/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(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$ec))
in /html/typo3/typo3_src-10.4.37/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/html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$ec->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-10.4.37/typo3/sysext/frontend/Classes/Middleware/FrontendUserAuthenticator.php line 83
        // Register the frontend user as aspect and within the session
        $this->setFrontendUserAspect($frontendUser);
        $request = $request->withAttribute('frontend.user', $frontendUser);

        $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(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$ec))
in /html/typo3/typo3_src-10.4.37/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/html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$ec->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-10.4.37/typo3/sysext/frontend/Classes/Middleware/BackendUserAuthenticator.php line 66
            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(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$ec))
in /html/typo3/typo3_src-10.4.37/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/html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$ec->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-10.4.37/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(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$ec))
in /html/typo3/typo3_src-10.4.37/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/html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$ec->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-10.4.37/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(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$ec))
in /html/typo3/typo3_src-10.4.37/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/html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$ec->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-10.4.37/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(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$ec))
in /html/typo3/typo3_src-10.4.37/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/html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$ec->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-10.4.37/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(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$ec))
in /html/typo3/typo3_src-10.4.37/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/html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$ec->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-10.4.37/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(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$ec))
in /html/typo3/typo3_src-10.4.37/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/html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$ec->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3conf/ext/instagram/Classes/Middleware/GetAuthenticationCode.php line 62
                $result['user_id']
            );
            return new RedirectResponse('/', 301);
        }
        return $handler->handle($request);
    }

    /**
     * @param ServerRequestInterface $request
at In2code\Instagram\Middleware\GetAuthenticationCode->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$ec))
in /html/typo3/typo3_src-10.4.37/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/html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$ec->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-10.4.37/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(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/AbstractApplication.php line 85
     * @return ResponseInterface
     */
    protected function handle(ServerRequestInterface $request): ResponseInterface
    {
        return $this->requestHandler->handle($request);
    }

    /**
     * Set up the application and shut it down afterwards
at TYPO3\CMS\Core\Http\AbstractApplication->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-10.4.37/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);
    }

    /**
     * Check if LocalConfiguration.php and PackageStates.php exist
at TYPO3\CMS\Frontend\Http\Application->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/AbstractApplication.php line 97
    final public function run(callable $execute = null)
    {
        try {
            $response = $this->handle(
                ServerRequestFactory::fromGlobals()
            );
            if ($execute !== null) {
                call_user_func($execute);
            }
at TYPO3\CMS\Core\Http\AbstractApplication->run()
in /html/typo3/typo3_src-10.4.37/index.php line 25
// Set up the application for the frontend
call_user_func(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 /html/typo3/typo3_src-10.4.37/index.php line 26
call_user_func(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();
});